kdbus: export needed symbols for out-of-tree support
authorMateusz Majewski <m.majewski2@samsung.com>
Thu, 25 Nov 2021 13:32:07 +0000 (14:32 +0100)
committerJaehoon Chung <jh80.chung@samsung.com>
Tue, 12 Nov 2024 04:03:15 +0000 (13:03 +0900)
We have been asked to move kdbus out-of-tree. It uses a couple
unexported symbols, so we need to (grudgingly) export them.

Change-Id: Ide04c46bbc71f8fffbdefca68959e1048af1c905
Signed-off-by: Mateusz Majewski <m.majewski2@samsung.com>
Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
fs/namespace.c
mm/memfd.c

index b4385e2413d5996bacb12f9374046efe18bb27f5..aa8b3a2e0263a07aeb26890b7077bb14b11a1071 100644 (file)
@@ -2045,6 +2045,7 @@ struct vfsmount *collect_mounts(const struct path *path)
                return ERR_CAST(tree);
        return &tree->mnt;
 }
+EXPORT_SYMBOL_GPL(collect_mounts);
 
 static void free_mnt_ns(struct mnt_namespace *);
 static struct mnt_namespace *alloc_mnt_ns(struct user_namespace *, bool);
@@ -2075,6 +2076,7 @@ void drop_collected_mounts(struct vfsmount *mnt)
        unlock_mount_hash();
        namespace_unlock();
 }
+EXPORT_SYMBOL_GPL(drop_collected_mounts);
 
 static bool has_locked_children(struct mount *mnt, struct dentry *dentry)
 {
@@ -2146,6 +2148,7 @@ int iterate_mounts(int (*f)(struct vfsmount *, void *), void *arg,
        }
        return 0;
 }
+EXPORT_SYMBOL_GPL(iterate_mounts);
 
 static void lock_mnt_tree(struct mount *mnt)
 {
index 2dba2cb6f0d0f8ba5c2c8d9b8a7297c22bbd62a6..d6b882b9629e192c59ba5357cfbd8c6365dbc330 100644 (file)
@@ -261,6 +261,7 @@ long memfd_fcntl(struct file *file, unsigned int cmd, unsigned int arg)
 
        return error;
 }
+EXPORT_SYMBOL_GPL(memfd_fcntl);
 
 #define MFD_NAME_PREFIX "memfd:"
 #define MFD_NAME_PREFIX_LEN (sizeof(MFD_NAME_PREFIX) - 1)