diff options
author | Luis de Bethencourt <luisbg@osg.samsung.com> | 2016-08-09 17:20:23 -0400 |
---|---|---|
committer | Luis de Bethencourt <luisbg@osg.samsung.com> | 2016-10-08 05:01:29 -0400 |
commit | d1a8c70676c7e2cd4b80f494aed17b5813f2be44 (patch) | |
tree | 5baef68484c90ab73f979fbc8993f6cae96851cc | |
parent | 78f647c27f17b10bd7e1ce5d66a3755b1848efa5 (diff) |
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>
-rw-r--r-- | fs/befs/debug.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/befs/debug.c b/fs/befs/debug.c index 4de7cffcd662..85c13392e9e8 100644 --- a/fs/befs/debug.c +++ b/fs/befs/debug.c | |||
@@ -169,6 +169,7 @@ befs_dump_super_block(const struct super_block *sb, befs_super_block * sup) | |||
169 | 169 | ||
170 | befs_debug(sb, " num_blocks %llu", fs64_to_cpu(sb, sup->num_blocks)); | 170 | befs_debug(sb, " num_blocks %llu", fs64_to_cpu(sb, sup->num_blocks)); |
171 | befs_debug(sb, " used_blocks %llu", fs64_to_cpu(sb, sup->used_blocks)); | 171 | 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)); | ||
172 | 173 | ||
173 | befs_debug(sb, " magic2 %08x", fs32_to_cpu(sb, sup->magic2)); | 174 | befs_debug(sb, " magic2 %08x", fs32_to_cpu(sb, sup->magic2)); |
174 | befs_debug(sb, " blocks_per_ag %u", | 175 | befs_debug(sb, " blocks_per_ag %u", |