From 9f2aee9074b4568dda5432fc56b5dd1067f9c358 Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Mon, 26 Aug 2024 00:00:19 +0200 Subject: ext2fs: mention which inode size is supported --- ext2fs/hyper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext2fs') diff --git a/ext2fs/hyper.c b/ext2fs/hyper.c index dd09442a..82b06d17 100644 --- a/ext2fs/hyper.c +++ b/ext2fs/hyper.c @@ -134,7 +134,7 @@ get_hypermetadata (void) diskfs_readonly = 1; } if (le16toh (sblock->s_inode_size) != EXT2_GOOD_OLD_INODE_SIZE) - ext2_panic ("inode size %d isn't supported", le16toh (sblock->s_inode_size)); + ext2_panic ("inode size %d isn't supported, only %d is supported", le16toh (sblock->s_inode_size), EXT2_GOOD_OLD_INODE_SIZE); if (EXT2_HAS_COMPAT_FEATURE (sblock, EXT3_FEATURE_COMPAT_HAS_JOURNAL)) ext2_warning ("mounting ext3 filesystem as ext2"); } -- cgit v1.2.3