aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
Diffstat (limited to 'fs')
-rw-r--r--fs/namespace.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/fs/namespace.c b/fs/namespace.c
index f527a0d6c64d..cce46702d33c 100644
--- a/fs/namespace.c
+++ b/fs/namespace.c
@@ -1550,8 +1550,13 @@ static int do_remount(struct path *path, int flags, int mnt_flags,
1550 if (!err) 1550 if (!err)
1551 path->mnt->mnt_flags = mnt_flags; 1551 path->mnt->mnt_flags = mnt_flags;
1552 up_write(&sb->s_umount); 1552 up_write(&sb->s_umount);
1553 if (!err) 1553 if (!err) {
1554 security_sb_post_remount(path->mnt, flags, data); 1554 security_sb_post_remount(path->mnt, flags, data);
1555
1556 spin_lock(&vfsmount_lock);
1557 touch_mnt_namespace(path->mnt->mnt_ns);
1558 spin_unlock(&vfsmount_lock);
1559 }
1555 return err; 1560 return err;
1556} 1561}
1557 1562