btrfs: get the device in write mode when deleting it
When we're deleting the device we should get it in write mode since we're going to re-write the super block magic on that device. And it should fail if the device is read-only. Signed-off-by: Lukas Czerner <lczerner@redhat.com>
This commit is contained in:
committed by
Josef Bacik
parent
cfa7a9ccda
commit
cc975eb460
@@ -1431,7 +1431,7 @@ int btrfs_rm_device(struct btrfs_root *root, char *device_path)
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
ret = btrfs_get_bdev_and_sb(device_path,
|
ret = btrfs_get_bdev_and_sb(device_path,
|
||||||
FMODE_READ | FMODE_EXCL,
|
FMODE_WRITE | FMODE_EXCL,
|
||||||
root->fs_info->bdev_holder, 0,
|
root->fs_info->bdev_holder, 0,
|
||||||
&bdev, &bh);
|
&bdev, &bh);
|
||||||
if (ret)
|
if (ret)
|
||||||
|
Reference in New Issue
Block a user