make ramfs_fill_super() static

all users should just call ramfs_mount()

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
Al Viro
2019-06-01 18:51:15 -04:00
parent d401727ea0
commit df02450217
3 changed files with 3 additions and 7 deletions

View File

@@ -630,12 +630,10 @@ static bool is_tmpfs;
static struct dentry *rootfs_mount(struct file_system_type *fs_type,
int flags, const char *dev_name, void *data)
{
void *fill = ramfs_fill_super;
if (IS_ENABLED(CONFIG_TMPFS) && is_tmpfs)
fill = shmem_fill_super;
return mount_nodev(fs_type, flags, data, shmem_fill_super);
return mount_nodev(fs_type, flags, data, fill);
return ramfs_mount(fs_type, flags, dev_name, data);
}
struct file_system_type rootfs_fs_type = {