Hi all, After merging the vfs-brauner tree, today's linux-next build (powerpc ppc64_defconfig) failed like this: ERROR: modpost: "fget_files_rcu" [arch/powerpc/platforms/cell/spufs/spufs.ko] undefined! Caused by commit af66b51563ad ("file: convert to SLAB_TYPESAFE_BY_RCU") I applied the following fix up patch. From dab8e3bea1812a352c6e21bf0d0b49d833595d19 Mon Sep 17 00:00:00 2001 From: Stephen Rothwell Date: Tue, 3 Oct 2023 09:26:33 +1100 Subject: [PATCH] fix up for "file: convert to SLAB_TYPESAFE_BY_RCU" Signed-off-by: Stephen Rothwell --- fs/file.c | 1 + 1 file changed, 1 insertion(+) diff --git a/fs/file.c b/fs/file.c index e37611221161..f804d7e50958 100644 --- a/fs/file.c +++ b/fs/file.c @@ -972,6 +972,7 @@ struct file *fget_files_rcu(struct files_struct *files, unsigned int fd) { return __fget_files_rcu(files, fd, 0); } +EXPORT_SYMBOL_GPL(fget_files_rcu); static struct file *__fget_files(struct files_struct *files, unsigned int fd, fmode_t mask) -- 2.40.1 -- Cheers, Stephen Rothwell