Skip to content

Commit

Permalink
btrfs: fix btrfs_free_stale_devices() with needed locks
Browse files Browse the repository at this point in the history
btrfs_free_stale_devices() finds the stale (not opened) matching
device path in the fs_uuid list. We are already under uuid_mutex
so when we check for each fs_devices, hold the respective
device_list_mutex.

Signed-off-by: Anand Jain <[email protected]>
  • Loading branch information
asj committed Jul 11, 2018
1 parent bdc6cc8 commit e735e86
Showing 1 changed file with 15 additions and 10 deletions.
25 changes: 15 additions & 10 deletions fs/btrfs/volumes.c
Original file line number Diff line number Diff line change
Expand Up @@ -639,8 +639,11 @@ static void btrfs_free_stale_devices(const char *path,
list_for_each_entry_safe(fs_devices, tmp_fs_devices, &fs_uuids,
fs_list) {

if (fs_devices->opened)
mutex_lock(&fs_devices->device_list_mutex);
if (fs_devices->opened) {
mutex_unlock(&fs_devices->device_list_mutex);
continue;
}

list_for_each_entry_safe(device, tmp_device,
&fs_devices->devices, dev_list) {
Expand All @@ -660,16 +663,18 @@ static void btrfs_free_stale_devices(const char *path,
continue;

/* delete the stale device */
if (fs_devices->num_devices == 1) {
btrfs_sysfs_remove_fsid(fs_devices);
list_del(&fs_devices->fs_list);
free_fs_devices(fs_devices);
fs_devices->num_devices--;
list_del(&device->dev_list);
btrfs_free_device(device);

if (fs_devices->num_devices == 0)
break;
} else {
fs_devices->num_devices--;
list_del(&device->dev_list);
btrfs_free_device(device);
}
}
mutex_unlock(&fs_devices->device_list_mutex);
if (fs_devices->num_devices == 0) {
btrfs_sysfs_remove_fsid(fs_devices);
list_del(&fs_devices->fs_list);
free_fs_devices(fs_devices);
}
}
}
Expand Down

0 comments on commit e735e86

Please sign in to comment.