diff options
author | Ilya Dryomov <idryomov@gmail.com> | 2013-01-20 08:57:57 -0500 |
---|---|---|
committer | Ilya Dryomov <idryomov@gmail.com> | 2013-01-20 09:21:20 -0500 |
commit | 18f39c416d18d74ac11d157e44247253d3fa30ae (patch) | |
tree | 71c9a8cb5fb1f881cd0d95ce7d37b9a80cac1d7a /fs/btrfs | |
parent | 2c0c9da02a2c4289350da6e54202a86602c0f926 (diff) |
Btrfs: fix unlock order in btrfs_ioctl_resize
Fix unlock order in btrfs_ioctl_resize().
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
Diffstat (limited to 'fs/btrfs')
-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 259dd52d8785..fcf1b1b40082 100644 --- a/fs/btrfs/ioctl.c +++ b/fs/btrfs/ioctl.c | |||
@@ -1446,8 +1446,8 @@ out_free: | |||
1446 | kfree(vol_args); | 1446 | kfree(vol_args); |
1447 | out: | 1447 | out: |
1448 | mutex_unlock(&root->fs_info->volume_mutex); | 1448 | mutex_unlock(&root->fs_info->volume_mutex); |
1449 | mnt_drop_write_file(file); | ||
1450 | atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0); | 1449 | atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0); |
1450 | mnt_drop_write_file(file); | ||
1451 | return ret; | 1451 | return ret; |
1452 | } | 1452 | } |
1453 | 1453 | ||