Skip to content

Commit d1a8c70

Browse files
committed
befs: dump inode_size superblock information
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 <luisbg@osg.samsung.com> Signed-off-by: Salah Triki <salah.triki@gmail.com>
1 parent 78f647c commit d1a8c70

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

fs/befs/debug.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,7 @@ befs_dump_super_block(const struct super_block *sb, befs_super_block * sup)
169169

170170
befs_debug(sb, " num_blocks %llu", fs64_to_cpu(sb, sup->num_blocks));
171171
befs_debug(sb, " used_blocks %llu", fs64_to_cpu(sb, sup->used_blocks));
172+
befs_debug(sb, " inode_size %u", fs32_to_cpu(sb, sup->inode_size));
172173

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

0 commit comments

Comments
 (0)