diff options
Diffstat (limited to 'fs/namespace.c')
-rw-r--r-- | fs/namespace.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/namespace.c b/fs/namespace.c index b22e469ab560..6bb0b85293e7 100644 --- a/fs/namespace.c +++ b/fs/namespace.c | |||
@@ -576,8 +576,8 @@ static int do_umount(struct vfsmount *mnt, int flags) | |||
576 | */ | 576 | */ |
577 | 577 | ||
578 | lock_kernel(); | 578 | lock_kernel(); |
579 | if ((flags & MNT_FORCE) && sb->s_op->umount_begin) | 579 | if (sb->s_op->umount_begin) |
580 | sb->s_op->umount_begin(sb); | 580 | sb->s_op->umount_begin(mnt, flags); |
581 | unlock_kernel(); | 581 | unlock_kernel(); |
582 | 582 | ||
583 | /* | 583 | /* |