btrfs-progs: mkfs: print checksum type when running mkfs
As mkfs will grow new checksums, print the used checksum in it's versbose output. Signed-off-by: Johannes Thumshirn <jthumshirn@suse.de> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
e4a8e1916d
commit
3c7387dee2
|
@ -1381,7 +1381,9 @@ raid_groups:
|
|||
pretty_size(allocation.system));
|
||||
printf("SSD detected: %s\n", ssd ? "yes" : "no");
|
||||
btrfs_parse_features_to_string(features_buf, features);
|
||||
printf("Incompat features: %s", features_buf);
|
||||
printf("Incompat features: %s\n", features_buf);
|
||||
printf("Checksum: %s",
|
||||
btrfs_super_csum_name(mkfs_cfg.csum_type));
|
||||
printf("\n");
|
||||
|
||||
list_all_devices(root);
|
||||
|
|
Loading…
Reference in New Issue