btrfs-progs: mkfs: update message when creating zoned fs with non-single profiles

The defaults for rotational devices are to enable DUP for metadata, this
does not yet work on zoned devices and fails with messages like:

  Zoned: /dev/sda: host-managed device detected, setting zoned feature
  ERROR: cannot use RAID/DUP profile in zoned mode

The RAID/DUP support will be implemented in the future and we don't want
to change the defaults to revert them back again. This makes it a bit
awkward for the user until this happens, so at least print a hint what
to do that single/single must be set manually.

Link: https://lore.kernel.org/linux-btrfs/20210706091922.38650-1-johannes.thumshirn@wdc.com/
Reported-by: Damien Le Moal <damien.lemoal@wdc.com>
Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
David Sterba 2021-07-30 16:03:13 +02:00
parent af62875784
commit 2f867c21e2

View File

@ -1321,7 +1321,7 @@ int BOX_MAIN(mkfs)(int argc, char **argv)
if (zoned && ((metadata_profile | data_profile) &
BTRFS_BLOCK_GROUP_PROFILE_MASK)) {
error("cannot use RAID/DUP profile in zoned mode");
error("zoned mode does not yet support RAID/DUP profiles, please specify '-d single -m single' manually");
goto error;
}