Commit 0ceeca5a authored by Al Viro's avatar Al Viro

hppfs can use existing proc_mnt, no need for do_kern_mount() in there

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 8089352a
...@@ -718,7 +718,7 @@ static int hppfs_fill_super(struct super_block *sb, void *d, int silent) ...@@ -718,7 +718,7 @@ static int hppfs_fill_super(struct super_block *sb, void *d, int silent)
struct vfsmount *proc_mnt; struct vfsmount *proc_mnt;
int err = -ENOENT; int err = -ENOENT;
proc_mnt = do_kern_mount("proc", 0, "proc", NULL); proc_mnt = mntget(current->nsproxy->pid_ns->proc_mnt);
if (IS_ERR(proc_mnt)) if (IS_ERR(proc_mnt))
goto out; goto out;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment