Message ID | 20190925133728.18027-5-jthumshirn@suse.de (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | btrfs-progs: support xxhash64 checksums | expand |
diff --git a/mkfs/main.c b/mkfs/main.c index 61184c8e7525..04509e788a52 100644 --- a/mkfs/main.c +++ b/mkfs/main.c @@ -1380,7 +1380,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);
As mkfs will grow new checksums, print the used checksum in it's versbose output. Signed-off-by: Johannes Thumshirn <jthumshirn@suse.de> --- mkfs/main.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)