Skip to content

Commit

Permalink
befs: dump inode_size superblock information
Browse files Browse the repository at this point in the history
befs_dump_super_block() wasn't giving the inode_size information when
dumping all elements of the superblock. Add this element to have complete
information of the superblock.

Signed-off-by: Luis de Bethencourt <[email protected]>
Signed-off-by: Salah Triki <[email protected]>
  • Loading branch information
luisbg committed Oct 8, 2016
1 parent 78f647c commit d1a8c70
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions fs/befs/debug.c
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ befs_dump_super_block(const struct super_block *sb, befs_super_block * sup)

befs_debug(sb, " num_blocks %llu", fs64_to_cpu(sb, sup->num_blocks));
befs_debug(sb, " used_blocks %llu", fs64_to_cpu(sb, sup->used_blocks));
befs_debug(sb, " inode_size %u", fs32_to_cpu(sb, sup->inode_size));

befs_debug(sb, " magic2 %08x", fs32_to_cpu(sb, sup->magic2));
befs_debug(sb, " blocks_per_ag %u",
Expand Down

0 comments on commit d1a8c70

Please sign in to comment.