Displays superblock checksum when dumping superblock contents. Signed-off-by: Darrick J. Wong <djwong@xxxxxxxxxx> --- lib/e2p/ls.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/lib/e2p/ls.c b/lib/e2p/ls.c index aa4a389..1c3ab1c 100644 --- a/lib/e2p/ls.c +++ b/lib/e2p/ls.c @@ -413,6 +413,10 @@ void list_super2(struct ext2_super_block * sb, FILE *f) if (sb->s_grp_quota_inum) fprintf(f, "Group quota inode: %u\n", sb->s_grp_quota_inum); + + if (sb->s_feature_ro_compat & EXT4_FEATURE_RO_COMPAT_METADATA_CSUM) + fprintf(f, "Checksum: 0x%08x\n", + sb->s_checksum); } void list_super (struct ext2_super_block * s) -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html