add inode item
[btrfs-progs-unstable.git] / debug-tree.c
blobde45fb4dfdddf14b6082dda3bf63014eb339a888
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include "kerncompat.h"
4 #include "radix-tree.h"
5 #include "ctree.h"
6 #include "disk-io.h"
7 #include "print-tree.h"
9 int main(int ac, char **av) {
10 struct btrfs_super_block super;
11 struct btrfs_root *root;
12 radix_tree_init();
13 root = open_ctree("dbfile", &super);
14 printf("fs tree\n");
15 btrfs_print_tree(root, root->node);
16 printf("map tree\n");
17 btrfs_print_tree(root->extent_root, root->extent_root->node);
18 printf("root tree\n");
19 btrfs_print_tree(root->tree_root, root->tree_root->node);
20 return 0;