aboutsummaryrefslogtreecommitdiff
path: root/ext2fs
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2024-08-26 00:00:19 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2024-08-26 00:00:19 +0200
commit9f2aee9074b4568dda5432fc56b5dd1067f9c358 (patch)
treec3e9ac0793ea8ebcca7d48cd82f313397919ef55 /ext2fs
parent3ff08d46d98ad72dbcb3a17a0c73afb84f950543 (diff)
downloadhurd-9f2aee9074b4568dda5432fc56b5dd1067f9c358.tar.gz
hurd-9f2aee9074b4568dda5432fc56b5dd1067f9c358.tar.bz2
hurd-9f2aee9074b4568dda5432fc56b5dd1067f9c358.zip
ext2fs: mention which inode size is supported
Diffstat (limited to 'ext2fs')
-rw-r--r--ext2fs/hyper.c2
1 files changed, 1 insertions, 1 deletions
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");
}