Sage Weil
2010-Feb-03 19:13 UTC
[PATCH] Btrfs-progs: 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 <sage@newdream.net> --- print-tree.c | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/print-tree.c b/print-tree.c index 59f4358..de064e1 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); } -- 1.5.6.5 -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html