diff options
author | Jeff Mahoney <jeffm@suse.com> | 2016-06-15 09:22:56 -0400 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2016-12-06 10:06:58 -0500 |
commit | da17066c40472c2d6a1aab7bb0090c3d285531c9 (patch) | |
tree | f51910799ffea3bfe5af34d009a2967b9e99e6ad /fs/btrfs/print-tree.c | |
parent | f15376df0dc2b632eb689793a73d4adba8404987 (diff) |
btrfs: pull node/sector/stripe sizes out of root and into fs_info
We track the node sizes per-root, but they never vary from the values
in the superblock. This patch messes with the 80-column style a bit,
but subsequent patches to factor out root->fs_info into a convenience
variable fix it up again.
Signed-off-by: Jeff Mahoney <jeffm@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/print-tree.c')
-rw-r--r-- | fs/btrfs/print-tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/print-tree.c b/fs/btrfs/print-tree.c index 438575ea8d25..57c403b205a5 100644 --- a/fs/btrfs/print-tree.c +++ b/fs/btrfs/print-tree.c | |||
@@ -331,7 +331,7 @@ void btrfs_print_tree(struct btrfs_root *root, struct extent_buffer *c) | |||
331 | btrfs_info(root->fs_info, | 331 | btrfs_info(root->fs_info, |
332 | "node %llu level %d total ptrs %d free spc %u", | 332 | "node %llu level %d total ptrs %d free spc %u", |
333 | btrfs_header_bytenr(c), level, nr, | 333 | btrfs_header_bytenr(c), level, nr, |
334 | (u32)BTRFS_NODEPTRS_PER_BLOCK(root) - nr); | 334 | (u32)BTRFS_NODEPTRS_PER_BLOCK(root->fs_info) - nr); |
335 | for (i = 0; i < nr; i++) { | 335 | for (i = 0; i < nr; i++) { |
336 | btrfs_node_key_to_cpu(c, &key, i); | 336 | btrfs_node_key_to_cpu(c, &key, i); |
337 | pr_info("\tkey %d (%llu %u %llu) block %llu\n", | 337 | pr_info("\tkey %d (%llu %u %llu) block %llu\n", |