diff options
Diffstat (limited to 'fs/btrfs/dev-replace.c')
-rw-r--r-- | fs/btrfs/dev-replace.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/btrfs/dev-replace.c b/fs/btrfs/dev-replace.c index dec01970d8c5..4e2b67d06305 100644 --- a/fs/btrfs/dev-replace.c +++ b/fs/btrfs/dev-replace.c | |||
@@ -409,10 +409,10 @@ int btrfs_dev_replace_start(struct btrfs_fs_info *fs_info, | |||
409 | struct btrfs_device *tgt_device = NULL; | 409 | struct btrfs_device *tgt_device = NULL; |
410 | struct btrfs_device *src_device = NULL; | 410 | struct btrfs_device *src_device = NULL; |
411 | 411 | ||
412 | ret = btrfs_find_device_by_devspec(fs_info, srcdevid, | 412 | src_device = btrfs_find_device_by_devspec(fs_info, srcdevid, |
413 | srcdev_name, &src_device); | 413 | srcdev_name); |
414 | if (ret) | 414 | if (IS_ERR(src_device)) |
415 | return ret; | 415 | return PTR_ERR(src_device); |
416 | 416 | ||
417 | ret = btrfs_init_dev_replace_tgtdev(fs_info, tgtdev_name, | 417 | ret = btrfs_init_dev_replace_tgtdev(fs_info, tgtdev_name, |
418 | src_device, &tgt_device); | 418 | src_device, &tgt_device); |