btrfs-progs: remove stride length from tree dump

The length has been removed from kernel, remove it here as well.

Signed-off-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
Johannes Thumshirn 2023-10-05 23:58:02 -07:00 committed by David Sterba
parent 546edf535d
commit 4acadd1d42
1 changed files with 2 additions and 3 deletions

View File

@ -685,10 +685,9 @@ static void print_raid_stripe_key(struct extent_buffer *eb,
printf("\t\t\tencoding: %s\n", stripe_encoding_name(encoding));
for (int i = 0; i < num_stripes; i++)
printf("\t\t\tstripe %d devid %llu physical %llu length %llu\n", i,
printf("\t\t\tstripe %d devid %llu physical %llu\n", i,
(unsigned long long)btrfs_raid_stride_devid_nr(eb, stripe, i),
(unsigned long long)btrfs_raid_stride_offset_nr(eb, stripe, i),
(unsigned long long)btrfs_raid_stride_length_nr(eb, stripe, i));
(unsigned long long)btrfs_raid_stride_offset_nr(eb, stripe, i));
}
void print_key_type(FILE *stream, u64 objectid, u8 type)