diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2009-04-07 12:15:39 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2009-04-20 23:01:15 -0400 |
commit | e5d67f0715bc60f6c19abdd86d007d7bb29c9951 (patch) | |
tree | 8de787c36ea21736434e7c4442a41527fc33bdbe /fs/namespace.c | |
parent | cf2706a340ae98616d4e2a54900393e0e0b6b72c (diff) | |
download | linux-e5d67f0715bc60f6c19abdd86d007d7bb29c9951.tar.bz2 |
Touch all affected namespaces on propagation of mount
We shouldn't just touch the namespace of current process
Caught-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/namespace.c')
-rw-r--r-- | fs/namespace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/namespace.c b/fs/namespace.c index d9138f81ec10..41196209a906 100644 --- a/fs/namespace.c +++ b/fs/namespace.c @@ -1377,7 +1377,7 @@ static int attach_recursive_mnt(struct vfsmount *source_mnt, if (parent_path) { detach_mnt(source_mnt, parent_path); attach_mnt(source_mnt, path); - touch_mnt_namespace(current->nsproxy->mnt_ns); + touch_mnt_namespace(parent_path->mnt->mnt_ns); } else { mnt_set_mountpoint(dest_mnt, dest_dentry, source_mnt); commit_tree(source_mnt); |