summaryrefslogtreecommitdiffstats
path: root/init
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2019-05-30 15:59:57 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2019-07-04 22:01:59 -0400
commit14a253ce4210cd2ef133b392062477e9d656db4a (patch)
tree36cfc4d45ff27e77ab4100923430596c5e352d8c /init
parent5afdd0f1e6a7e56264fd933065884a7903375106 (diff)
downloadlinux-0-day-14a253ce4210cd2ef133b392062477e9d656db4a.tar.gz
linux-0-day-14a253ce4210cd2ef133b392062477e9d656db4a.tar.xz
init_rootfs(): don't bother with init_ramfs_fs()
the only thing done by the latter is making ramfs visible to mount(2); we don't need it there - rootfs is separate and, in fact, made visible to mount(2) in the same init_rootfs(). Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'init')
-rw-r--r--init/do_mounts.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/init/do_mounts.c b/init/do_mounts.c
index f8c230c77035c..c170d8b309b1c 100644
--- a/init/do_mounts.c
+++ b/init/do_mounts.c
@@ -658,8 +658,6 @@ int __init init_rootfs(void)
(!root_fs_names || strstr(root_fs_names, "tmpfs"))) {
err = shmem_init();
is_tmpfs = true;
- } else {
- err = init_ramfs_fs();
}
if (err)