make shmem_fill_super() static
authorAl Viro <viro@zeniv.linux.org.uk>
Sat, 1 Jun 2019 22:56:53 +0000 (18:56 -0400)
committerAl Viro <viro@zeniv.linux.org.uk>
Thu, 5 Sep 2019 18:34:28 +0000 (14:34 -0400)
... have callers use shmem_mount()

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
drivers/base/devtmpfs.c
include/linux/shmem_fs.h
init/do_mounts.c
mm/shmem.c

index bafdf86..dabf500 100644 (file)
@@ -71,7 +71,7 @@ static struct dentry *dev_mount(struct file_system_type *fs_type, int flags,
                      const char *dev_name, void *data)
 {
 #ifdef CONFIG_TMPFS
-       return mount_nodev(fs_type, flags, data, shmem_fill_super);
+       return shmem_mount(fs_type, flags, dev_name, data);
 #else
        return ramfs_mount(fs_type, flags, dev_name, data);
 #endif
index 20d815a..88cb98b 100644 (file)
@@ -50,7 +50,8 @@ static inline struct shmem_inode_info *SHMEM_I(struct inode *inode)
  * Functions in mm/shmem.c called directly from elsewhere:
  */
 extern int shmem_init(void);
-extern int shmem_fill_super(struct super_block *sb, void *data, int silent);
+extern struct dentry *shmem_mount(struct file_system_type *fs_type,
+       int flags, const char *dev_name, void *data);
 extern struct file *shmem_file_setup(const char *name,
                                        loff_t size, unsigned long flags);
 extern struct file *shmem_kernel_file_setup(const char *name, loff_t size,
index baedc2e..16c29e5 100644 (file)
@@ -631,7 +631,7 @@ static struct dentry *rootfs_mount(struct file_system_type *fs_type,
        int flags, const char *dev_name, void *data)
 {
        if (IS_ENABLED(CONFIG_TMPFS) && is_tmpfs)
-               return mount_nodev(fs_type, flags, data, shmem_fill_super);
+               return shmem_mount(fs_type, flags, dev_name, data);
 
        return ramfs_mount(fs_type, flags, dev_name, data);
 }
index 2bed476..40f574c 100644 (file)
@@ -3547,7 +3547,7 @@ static void shmem_put_super(struct super_block *sb)
        sb->s_fs_info = NULL;
 }
 
-int shmem_fill_super(struct super_block *sb, void *data, int silent)
+static int shmem_fill_super(struct super_block *sb, void *data, int silent)
 {
        struct inode *inode;
        struct shmem_sb_info *sbinfo;
@@ -3759,7 +3759,7 @@ static const struct vm_operations_struct shmem_vm_ops = {
 #endif
 };
 
-static struct dentry *shmem_mount(struct file_system_type *fs_type,
+struct dentry *shmem_mount(struct file_system_type *fs_type,
        int flags, const char *dev_name, void *data)
 {
        return mount_nodev(fs_type, flags, data, shmem_fill_super);