aboutsummaryrefslogtreecommitdiffstats
path: root/fs/libfs.c
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2012-03-17 02:13:52 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2012-03-20 21:29:44 -0400
commit2452992aa78315bf0f510620d22fae8ecb40a2eb (patch)
tree6189253c48aa4a40d07707bf406896833778c61c /fs/libfs.c
parentea23b453103e7495ef0a90c86b92f27e17092bfa (diff)
make simple_pin_fs() pass MS_KERNMOUNT - it's a kernel-internal one
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/libfs.c')
-rw-r--r--fs/libfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/libfs.c b/fs/libfs.c
index 7c895a763a1e..722e0d5ba182 100644
--- a/fs/libfs.c
+++ b/fs/libfs.c
@@ -534,7 +534,7 @@ int simple_pin_fs(struct file_system_type *type, struct vfsmount **mount, int *c
534 spin_lock(&pin_fs_lock); 534 spin_lock(&pin_fs_lock);
535 if (unlikely(!*mount)) { 535 if (unlikely(!*mount)) {
536 spin_unlock(&pin_fs_lock); 536 spin_unlock(&pin_fs_lock);
537 mnt = vfs_kern_mount(type, 0, type->name, NULL); 537 mnt = vfs_kern_mount(type, MS_KERNMOUNT, type->name, NULL);
538 if (IS_ERR(mnt)) 538 if (IS_ERR(mnt))
539 return PTR_ERR(mnt); 539 return PTR_ERR(mnt);
540 spin_lock(&pin_fs_lock); 540 spin_lock(&pin_fs_lock);