mirror of
https://github.com/kdave/btrfs-progs
synced 2025-01-04 20:49:41 +00:00
Print the root generation in btrfs-debug-tree
Signed-off-by: Chris Mason <chris.mason@oracle.com>
This commit is contained in:
parent
0758da29a6
commit
24825392b3
@ -504,11 +504,12 @@ void btrfs_print_leaf(struct btrfs_root *root, struct extent_buffer *l)
|
||||
case BTRFS_ROOT_ITEM_KEY:
|
||||
ri = btrfs_item_ptr(l, i, struct btrfs_root_item);
|
||||
read_extent_buffer(l, &root_item, (unsigned long)ri, sizeof(root_item));
|
||||
printf("\t\troot data bytenr %llu level %d dirid %llu refs %u\n",
|
||||
printf("\t\troot data bytenr %llu level %d dirid %llu refs %u gen %llu\n",
|
||||
(unsigned long long)btrfs_root_bytenr(&root_item),
|
||||
btrfs_root_level(&root_item),
|
||||
(unsigned long long)btrfs_root_dirid(&root_item),
|
||||
btrfs_root_refs(&root_item));
|
||||
btrfs_root_refs(&root_item),
|
||||
(unsigned long long)btrfs_root_generation(&root_item));
|
||||
if (btrfs_root_refs(&root_item) == 0) {
|
||||
struct btrfs_key drop_key;
|
||||
btrfs_disk_key_to_cpu(&drop_key,
|
||||
|
Loading…
Reference in New Issue
Block a user