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>
master
Sage Weil 2010-09-09 11:46:22 +08:00 committed by Chris Mason
parent 48f16a69d7
commit 595cb1df15
1 changed files with 5 additions and 2 deletions

View File

@ -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);
}