aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/namespace.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/namespace.c b/fs/namespace.c
index 3a1a87dc33df..43b16af8af30 100644
--- a/fs/namespace.c
+++ b/fs/namespace.c
@@ -1544,6 +1544,9 @@ SYSCALL_DEFINE2(umount, char __user *, name, int, flags)
1544 goto dput_and_out; 1544 goto dput_and_out;
1545 if (mnt->mnt.mnt_flags & MNT_LOCKED) 1545 if (mnt->mnt.mnt_flags & MNT_LOCKED)
1546 goto dput_and_out; 1546 goto dput_and_out;
1547 retval = -EPERM;
1548 if (flags & MNT_FORCE && !capable(CAP_SYS_ADMIN))
1549 goto dput_and_out;
1547 1550
1548 retval = do_umount(mnt, flags); 1551 retval = do_umount(mnt, flags);
1549dput_and_out: 1552dput_and_out: