diff options
author | Chris Mason <chris.mason@oracle.com> | 2007-03-13 10:46:10 -0400 |
---|---|---|
committer | David Woodhouse <dwmw2@hera.kernel.org> | 2007-03-13 10:46:10 -0400 |
commit | 234b63a091e1df6bd4261dd7b3a7490074830628 (patch) | |
tree | 1947f6e49aa3c19017c948205378c5cb76a7b536 /fs/btrfs/debug-tree.c | |
parent | cf27e1eec063fa68a89c57ae0a83f93aa38851d6 (diff) |
rename funcs and structs to btrfs
Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs/btrfs/debug-tree.c')
-rw-r--r-- | fs/btrfs/debug-tree.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/btrfs/debug-tree.c b/fs/btrfs/debug-tree.c index 21f607d8b050..6da0a7aa0f47 100644 --- a/fs/btrfs/debug-tree.c +++ b/fs/btrfs/debug-tree.c | |||
@@ -7,13 +7,13 @@ | |||
7 | #include "print-tree.h" | 7 | #include "print-tree.h" |
8 | 8 | ||
9 | int main(int ac, char **av) { | 9 | int main(int ac, char **av) { |
10 | struct ctree_super_block super; | 10 | struct btrfs_super_block super; |
11 | struct ctree_root *root; | 11 | struct btrfs_root *root; |
12 | radix_tree_init(); | 12 | radix_tree_init(); |
13 | root = open_ctree("dbfile", &super); | 13 | root = open_ctree("dbfile", &super); |
14 | printf("root tree\n"); | 14 | printf("root tree\n"); |
15 | print_tree(root, root->node); | 15 | btrfs_print_tree(root, root->node); |
16 | printf("map tree\n"); | 16 | printf("map tree\n"); |
17 | print_tree(root->extent_root, root->extent_root->node); | 17 | btrfs_print_tree(root->extent_root, root->extent_root->node); |
18 | return 0; | 18 | return 0; |
19 | } | 19 | } |