diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2010-01-16 13:07:36 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2010-01-16 13:07:36 -0500 |
commit | 27d55f1f4c190b14092fcca3069c7d15df83514f (patch) | |
tree | e0d305a30fa5b5655b87ecc1b50d1664fb4bf70e /fs | |
parent | 7e1295d9f8300e8c8d1af01765f475621c19ee1d (diff) | |
download | linux-3.10-27d55f1f4c190b14092fcca3069c7d15df83514f.tar.gz linux-3.10-27d55f1f4c190b14092fcca3069c7d15df83514f.tar.bz2 linux-3.10-27d55f1f4c190b14092fcca3069c7d15df83514f.zip |
do_add_mount() should sanitize mnt_flags
MNT_WRITE_HOLD shouldn't leak into new vfsmount and neither
should MNT_SHARED (the latter will be set properly, along with
the rest of shared-subtree data structures)
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs')
-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 779293e29b8..c768f733c8d 100644 --- a/fs/namespace.c +++ b/fs/namespace.c @@ -1671,6 +1671,8 @@ int do_add_mount(struct vfsmount *newmnt, struct path *path, { int err; + mnt_flags &= ~(MNT_SHARED | MNT_WRITE_HOLD); + down_write(&namespace_sem); /* Something was mounted here while we slept */ while (d_mountpoint(path->dentry) && |