btrfs: add helper to obtain number of devices with ongoing dev-replace
authorAnand Jain <anand.jain@oracle.com>
Fri, 10 Aug 2018 05:53:21 +0000 (13:53 +0800)
committerDavid Sterba <dsterba@suse.com>
Mon, 15 Oct 2018 15:23:26 +0000 (17:23 +0200)
commit1da739678e0b7a764a0f1ef46886f919f19f6446
tree87de705dbdf8b00742b1811da20ac9b03bca14bc
parent16220c467ad34c8f103566a79ac047ed391f51f2
btrfs: add helper to obtain number of devices with ongoing dev-replace

When the replace is running the fs_devices::num_devices also includes
the replaced device, however in some operations like device delete and
balance it needs the actual num_devices without the repalced devices.
The function btrfs_num_devices() just provides that.

And here is a scenario how balance and repalce items could co-exist:

Consider balance is started and paused, now start the replace followed
by a unmount or system power-cycle. During following mount, the
open_ctree() first restarts the balance so it must check for the device
replace otherwise our num_devices calculation will be wrong.

Signed-off-by: Anand Jain <anand.jain@oracle.com>
Reviewed-by: David Sterba <dsterba@suse.com>
[ update changelog ]
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/volumes.c