btrfs: fix rw_devices miss match after seed replace
authorAnand Jain <Anand.Jain@oracle.com>
Wed, 13 Aug 2014 06:24:21 +0000 (14:24 +0800)
committerChris Mason <clm@fb.com>
Wed, 17 Sep 2014 20:38:06 +0000 (13:38 -0700)
commit63dd86fa79db737a50f47488e5249f24e5acebc1
tree9357a9901a9891d46b3dc48a88d5ceaf146ac790
parent25e8e9113d340f0c32161ced0d4655eff8fed757
btrfs: fix rw_devices miss match after seed replace

reproducer:
    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: 3882 at fs/btrfs/volumes.c:892 __btrfs_close_devices+0x1c8/0x200 [btrfs]()

which is

        WARN_ON(fs_devices->rw_devices);

   The problem here is that we did not add one to the rw_devices when
   we replace the seed device with a writable device.

Signed-off-by: Anand Jain <anand.jain@oracle.com>
Signed-off-by: Chris Mason <clm@fb.com>
fs/btrfs/dev-replace.c