Anand Jain
2014-Oct-15 00:45 UTC
[PATCH 1/1] btrfs-progs: mkfs should be consistent in calling register device
When we have one device we don't call register device. (in fact not mandatory, but to make it consistent) And when we have more than one we call register device. reproducer: Nothing in the kernel device list cat /proc/fs/btrfs/devlist | egrep fsid | wc -l 0 mkfs.btrfs will automatically call register device when devices is more than 1. mkfs.btrfs -f /dev/sdb /dev/sdc cat /proc/fs/btrfs/devlist | egrep fsid | wc -l 1 But it does not when there is only one device mkfs.btrfs -f /dev/sdb cat /proc/fs/btrfs/devlist | egrep fsid | wc -l 0 Signed-off-by: Anand Jain <anand.jain@oracle.com> --- mkfs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mkfs.c b/mkfs.c index 9de61e1..e10e62d 100644 --- a/mkfs.c +++ b/mkfs.c @@ -1588,11 +1588,11 @@ int main(int ac, char **av) trans = btrfs_start_transaction(root, 1); + btrfs_register_one_device(file); + if (dev_cnt == 0) goto raid_groups; - btrfs_register_one_device(file); - while (dev_cnt-- > 0) { int old_mixed = mixed; -- 2.0.0.153.g79dcccc -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html