diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2019-06-01 18:56:53 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2019-09-05 14:34:28 -0400 |
commit | 7e30d2a5eb0b2d5853f06cb8a2d44937d80a6bd6 (patch) | |
tree | 26721671b0c6d2f72162407385b5371112e467e0 /init | |
parent | df02450217c98e01b8b22f805314470df71f2b9b (diff) | |
download | linux-7e30d2a5eb0b2d5853f06cb8a2d44937d80a6bd6.tar.bz2 |
make shmem_fill_super() static
... have callers use shmem_mount()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'init')
-rw-r--r-- | init/do_mounts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init/do_mounts.c b/init/do_mounts.c index baedc2ef579e..16c29e57f224 100644 --- a/init/do_mounts.c +++ b/init/do_mounts.c @@ -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); } |