From 87a74496ed4a51378b6b01606639d71113b040e5 Mon Sep 17 00:00:00 2001 From: Greg Kroah-Hartman Date: Wed, 12 Jan 2022 11:54:00 +0100 Subject: [PATCH] ANDROID: configfs: add proper module namespace marking Commit d483eed85ffb ("ANDROID: GKI: set vfs-only exports into their own namespace") added a namespace for vfs functions. For some kernelci build targets, configfs is built as a module, so add the proper namespace marking for configfs as well to fix the reported build problems. Fixes: d483eed85ffb ("ANDROID: GKI: set vfs-only exports into their own namespace") Signed-off-by: Greg Kroah-Hartman Change-Id: I1abc2f17d9a8f90f1fe060b314eb69cb1e6cfc5d --- fs/configfs/mount.c | 1 + 1 file changed, 1 insertion(+) diff --git a/fs/configfs/mount.c b/fs/configfs/mount.c index 0c6e8cf61953..2ac2d0ea7777 100644 --- a/fs/configfs/mount.c +++ b/fs/configfs/mount.c @@ -173,6 +173,7 @@ static void __exit configfs_exit(void) MODULE_AUTHOR("Oracle"); MODULE_LICENSE("GPL"); +MODULE_IMPORT_NS(VFS_internal_I_am_really_a_filesystem_and_am_NOT_a_driver); MODULE_VERSION("0.0.2"); MODULE_DESCRIPTION("Simple RAM filesystem for user driven kernel subsystem configuration.");