diff options
author | Ilya Dryomov <idryomov@gmail.com> | 2013-01-20 15:57:57 +0200 |
---|---|---|
committer | Ilya Dryomov <idryomov@gmail.com> | 2013-01-20 16:21:21 +0200 |
commit | 4ac20c70b0734b65662ded735e5f6ba0415bdb71 (patch) | |
tree | 678b77e66230670e0461bb35d0bc00574b8865aa /fs | |
parent | 18f39c416d18d74ac11d157e44247253d3fa30ae (diff) |
Btrfs: fix unlock order in btrfs_ioctl_rm_dev
Fix unlock order in btrfs_ioctl_rm_dev().
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/btrfs/ioctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/ioctl.c b/fs/btrfs/ioctl.c index fcf1b1b40082..f5c1c150d9f3 100644 --- a/fs/btrfs/ioctl.c +++ b/fs/btrfs/ioctl.c @@ -2319,8 +2319,8 @@ static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg) kfree(vol_args); out: mutex_unlock(&root->fs_info->volume_mutex); - mnt_drop_write_file(file); atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0); + mnt_drop_write_file(file); return ret; } |