mirror of
https://github.com/kdave/btrfs-progs
synced 2025-04-01 22:48:06 +00:00
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:
parent
af62875784
commit
2f867c21e2
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user