From 595cb1df15c47ffc9f119d7c3f5e3717d2b5c04d Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Thu, 9 Sep 2010 11:46:22 +0800 Subject: [PATCH] only print FIRST_CHUNK_TREE for chunk items in debug-tree Otherwise we print FIRST_CHUNK_TREE for any objectid 256, which e.g. for the root tree is the first snap/subvol. Signed-off-by: Sage Weil --- print-tree.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/print-tree.c b/print-tree.c index bd8af132..ac575d54 100644 --- a/print-tree.c +++ b/print-tree.c @@ -413,8 +413,11 @@ static void print_objectid(unsigned long long objectid, u8 type) printf("MULTIPLE"); break; case BTRFS_FIRST_CHUNK_TREE_OBJECTID: - printf("FIRST_CHUNK_TREE"); - break; + if (type == BTRFS_CHUNK_ITEM_KEY) { + printf("FIRST_CHUNK_TREE"); + break; + } + /* fall-thru */ default: printf("%llu", objectid); }