]> code.ossystems Code Review - openembedded-core.git/blob
ad416208b2752630e10400db8b0d071a24f91df7
[openembedded-core.git] /
1 Upstream-Status: Inappropriate [Backport]
2 From d5b8b904ac40e4c5dbff4008accd7e588b697085 Mon Sep 17 00:00:00 2001
3 From: Chris Mason <chris.mason@oracle.com>
4 Date: Wed, 15 Dec 2010 16:03:00 -0500
5 Subject: [PATCH 3/5] Print the root generation in btrfs-debug-tree
6
7 Signed-off-by: Chris Mason <chris.mason@oracle.com>
8 ---
9  print-tree.c |    5 +++--
10  1 files changed, 3 insertions(+), 2 deletions(-)
11
12 diff --git a/print-tree.c b/print-tree.c
13 index ac575d5..85399aa 100644
14 --- a/print-tree.c
15 +++ b/print-tree.c
16 @@ -505,11 +505,12 @@ void btrfs_print_leaf(struct btrfs_root *root, struct extent_buffer *l)
17                 case BTRFS_ROOT_ITEM_KEY:
18                         ri = btrfs_item_ptr(l, i, struct btrfs_root_item);
19                         read_extent_buffer(l, &root_item, (unsigned long)ri, sizeof(root_item));
20 -                       printf("\t\troot data bytenr %llu level %d dirid %llu refs %u\n",
21 +                       printf("\t\troot data bytenr %llu level %d dirid %llu refs %u gen %llu\n",
22                                 (unsigned long long)btrfs_root_bytenr(&root_item),
23                                 btrfs_root_level(&root_item),
24                                 (unsigned long long)btrfs_root_dirid(&root_item),
25 -                               btrfs_root_refs(&root_item));
26 +                               btrfs_root_refs(&root_item),
27 +                               (unsigned long long)btrfs_root_generation(&root_item));
28                         if (btrfs_root_refs(&root_item) == 0) {
29                                 struct btrfs_key drop_key;
30                                 btrfs_disk_key_to_cpu(&drop_key,
31 -- 
32 1.7.2.3
33