Btrfs: protect devices list with its mutex
Since we've kill the bigger one volume_mutex, we need to add devices list mutex back. Signed-off-by: Liu Bo <bo.li.liu@oracle.com> Signed-off-by: Chris Mason <chris.mason@fusionio.com>
This commit is contained in:
parent
b53d3f5db2
commit
d25628bdd6
1 changed files with 5 additions and 4 deletions
|
@ -1681,16 +1681,17 @@ int btrfs_init_new_device(struct btrfs_root *root, char *device_path)
|
||||||
filemap_write_and_wait(bdev->bd_inode->i_mapping);
|
filemap_write_and_wait(bdev->bd_inode->i_mapping);
|
||||||
|
|
||||||
devices = &root->fs_info->fs_devices->devices;
|
devices = &root->fs_info->fs_devices->devices;
|
||||||
/*
|
|
||||||
* we have the volume lock, so we don't need the extra
|
mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
|
||||||
* device list mutex while reading the list here.
|
|
||||||
*/
|
|
||||||
list_for_each_entry(device, devices, dev_list) {
|
list_for_each_entry(device, devices, dev_list) {
|
||||||
if (device->bdev == bdev) {
|
if (device->bdev == bdev) {
|
||||||
ret = -EEXIST;
|
ret = -EEXIST;
|
||||||
|
mutex_unlock(
|
||||||
|
&root->fs_info->fs_devices->device_list_mutex);
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
|
||||||
|
|
||||||
device = kzalloc(sizeof(*device), GFP_NOFS);
|
device = kzalloc(sizeof(*device), GFP_NOFS);
|
||||||
if (!device) {
|
if (!device) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue