summaryrefslogtreecommitdiffstats
path: root/fs/namespace.c
diff options
context:
space:
mode:
authorAl Viro2009-04-07 18:21:18 +0200
committerAl Viro2009-06-12 03:35:59 +0200
commitdd5cae6e9772ecc62fd374f7a8ec10eb51c96c4d (patch)
tree48cfed52f4cc4fc9e2d91b1c8646f438f2f0e110 /fs/namespace.c
parentMake vfs_path_lookup() use starting point as root (diff)
downloadkernel-qcow2-linux-dd5cae6e9772ecc62fd374f7a8ec10eb51c96c4d.tar.gz
kernel-qcow2-linux-dd5cae6e9772ecc62fd374f7a8ec10eb51c96c4d.tar.xz
kernel-qcow2-linux-dd5cae6e9772ecc62fd374f7a8ec10eb51c96c4d.zip
Don't bother with check_mnt() in do_add_mount() on shrinkable ones
These guys are what we add as submounts; checks for "is that attached in our namespace" are simply irrelevant for those and counterproductive for use of private vfsmount trees a-la what NFS folks want. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/namespace.c')
-rw-r--r--fs/namespace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/namespace.c b/fs/namespace.c
index 134d494158d9..88a904d5aa23 100644
--- a/fs/namespace.c
+++ b/fs/namespace.c
@@ -1698,7 +1698,7 @@ int do_add_mount(struct vfsmount *newmnt, struct path *path,
follow_down(&path->mnt, &path->dentry))
;
err = -EINVAL;
- if (!check_mnt(path->mnt))
+ if (!(mnt_flags & MNT_SHRINKABLE) && !check_mnt(path->mnt))
goto unlock;
/* Refuse the same filesystem on the same mount point */