summaryrefslogtreecommitdiffstats
path: root/init
diff options
context:
space:
mode:
authorAl Viro2019-05-30 21:59:57 +0200
committerAl Viro2019-07-05 04:01:59 +0200
commit14a253ce4210cd2ef133b392062477e9d656db4a (patch)
tree36cfc4d45ff27e77ab4100923430596c5e352d8c /init
parentvfs: Convert smackfs to use the new mount API (diff)
downloadkernel-qcow2-linux-14a253ce4210cd2ef133b392062477e9d656db4a.tar.gz
kernel-qcow2-linux-14a253ce4210cd2ef133b392062477e9d656db4a.tar.xz
kernel-qcow2-linux-14a253ce4210cd2ef133b392062477e9d656db4a.zip
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 f8c230c77035..c170d8b309b1 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)