Skip to content

Commit

Permalink
Btrfs: remove of redundant btrfs_header_level
Browse files Browse the repository at this point in the history
This removes the continues call's of btrfs_header_level. One call of
btrfs_header_level(c) its enough.

Signed-off-by Daniel Cadete <danielncadete10@gmail.com>

Signed-off-by: Chris Mason <chris.mason@oracle.com>
  • Loading branch information
Daniel Cadete authored and Chris Mason committed Jul 22, 2009
1 parent 33c17ad commit c271b49
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fs/btrfs/print-tree.c
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ void btrfs_print_tree(struct btrfs_root *root, struct extent_buffer *c)
}
printk(KERN_INFO "node %llu level %d total ptrs %d free spc %u\n",
(unsigned long long)btrfs_header_bytenr(c),
btrfs_header_level(c), nr,
level, nr,
(u32)BTRFS_NODEPTRS_PER_BLOCK(root) - nr);
for (i = 0; i < nr; i++) {
btrfs_node_key_to_cpu(c, &key, i);
Expand All @@ -326,10 +326,10 @@ void btrfs_print_tree(struct btrfs_root *root, struct extent_buffer *c)
btrfs_level_size(root, level - 1),
btrfs_node_ptr_generation(c, i));
if (btrfs_is_leaf(next) &&
btrfs_header_level(c) != 1)
level != 1)
BUG();
if (btrfs_header_level(next) !=
btrfs_header_level(c) - 1)
level - 1)
BUG();
btrfs_print_tree(root, next);
free_extent_buffer(next);
Expand Down

0 comments on commit c271b49

Please sign in to comment.