summaryrefslogtreecommitdiffstats
path: root/fs/btrfs/volumes.c
diff options
context:
space:
mode:
authorAnand Jain2014-08-20 04:56:56 +0200
committerChris Mason2014-09-17 22:38:05 +0200
commit25e8e9113d340f0c32161ced0d4655eff8fed757 (patch)
tree3c995e0415f329e81e19b10db9f963bba62f43cc /fs/btrfs/volumes.c
parentbtrfs: preparatory to make btrfs_rm_dev_replace_srcdev() seed aware (diff)
downloadkernel-qcow2-linux-25e8e9113d340f0c32161ced0d4655eff8fed757.tar.gz
kernel-qcow2-linux-25e8e9113d340f0c32161ced0d4655eff8fed757.tar.xz
kernel-qcow2-linux-25e8e9113d340f0c32161ced0d4655eff8fed757.zip
btrfs: replace seed device followed by unmount causes kernel WARNING
reproducer: mount /dev/sdb /btrfs btrfs dev add /dev/sdc /btrfs btrfs rep start -B /dev/sdb /dev/sdd /btrfs umount /btrfs WARNING: CPU: 0 PID: 12661 at fs/btrfs/volumes.c:891 __btrfs_close_devices+0x1b0/0x200 [btrfs]() :: __btrfs_close_devices() :: WARN_ON(fs_devices->open_devices); After the seed device has been replaced the new target device is no more a seed device. So we need to update the device numbers in the fs_devices as pointed by the fs_info. Signed-off-by: Anand Jain <anand.jain@oracle.com> Reviewed-by: Miao Xie <miaox@cn.fujitsu.com> Signed-off-by: Chris Mason <clm@fb.com>
Diffstat (limited to 'fs/btrfs/volumes.c')
-rw-r--r--fs/btrfs/volumes.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c
index 096b4a3dc5a9..361a66e2c179 100644
--- a/fs/btrfs/volumes.c
+++ b/fs/btrfs/volumes.c
@@ -1819,7 +1819,13 @@ void btrfs_rm_dev_replace_srcdev(struct btrfs_fs_info *fs_info,
WARN_ON(!mutex_is_locked(&fs_info->fs_devices->device_list_mutex));
- fs_devices = fs_info->fs_devices;
+ /*
+ * in case of fs with no seed, srcdev->fs_devices will point
+ * to fs_devices of fs_info. However when the dev being replaced is
+ * a seed dev it will point to the seed's local fs_devices. In short
+ * srcdev will have its correct fs_devices in both the cases.
+ */
+ fs_devices = srcdev->fs_devices;
list_del_rcu(&srcdev->dev_list);
list_del_rcu(&srcdev->dev_alloc_list);