diff options
author | Andrei Vagin <avagin@openvz.org> | 2017-06-08 20:32:29 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2017-06-15 06:53:05 -0400 |
commit | 4068367c9ca7b515a209f9c0c8741309a1e90495 (patch) | |
tree | ebc92739af39e349cfdab8bfd839c07499232a90 | |
parent | 81be24d263dbeddaba35827036d6f6787a59c2c3 (diff) |
fs: don't forget to put old mntns in mntns_install
Fixes: 4f757f3cbf54 ("make sure that mntns_install() doesn't end up with referral for root")
Cc: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Andrei Vagin <avagin@openvz.org>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
-rw-r--r-- | fs/namespace.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/namespace.c b/fs/namespace.c index 8bd3e4d448b9..5a4438445bf7 100644 --- a/fs/namespace.c +++ b/fs/namespace.c | |||
@@ -3488,6 +3488,8 @@ static int mntns_install(struct nsproxy *nsproxy, struct ns_common *ns) | |||
3488 | return err; | 3488 | return err; |
3489 | } | 3489 | } |
3490 | 3490 | ||
3491 | put_mnt_ns(old_mnt_ns); | ||
3492 | |||
3491 | /* Update the pwd and root */ | 3493 | /* Update the pwd and root */ |
3492 | set_fs_pwd(fs, &root); | 3494 | set_fs_pwd(fs, &root); |
3493 | set_fs_root(fs, &root); | 3495 | set_fs_root(fs, &root); |