* [PATCH][e2fsprogs] extend bg_itable_unused into 32bit
@ 2007-10-15 7:34 Coly Li
0 siblings, 0 replies; only message in thread
From: Coly Li @ 2007-10-15 7:34 UTC (permalink / raw)
To: linux-ext4
Current bg_itable_unused in ext2_group_desc and ext4_group_desc is 16bit, which can present 64K
inode offset in inodes table at most. For 4KB ext4 block, the inode bitmap can present 32K inodes in
inodes table at most.
It is very easy to encounter this size limitation in future ext4 development -- we need to extend
this field into 32bit for ext4.
In latest e2fsprogs git, it seems only adding a bg_itable_unused_hi in struct ext4_group_desc is OK
(do not interfere current e2fsprogs and kernel code).
Signed-off-by: Coly Li <coyli@suse.de>
---
diff --git a/lib/ext2fs/ext2_fs.h b/lib/ext2fs/ext2_fs.h
index a316665..2aeb6d4 100644
--- a/lib/ext2fs/ext2_fs.h
+++ b/lib/ext2fs/ext2_fs.h
@@ -167,7 +167,7 @@ struct ext4_group_desc
__u16 bg_free_blocks_count_hi;/* Free blocks count MSB */
__u16 bg_free_inodes_count_hi;/* Free inodes count MSB */
__u16 bg_used_dirs_count_hi; /* Directories count MSB */
- __u16 bg_pad;
+ __u16 bg_itable_unused_hi; /* Unused inodes count MSB */
__u32 bg_reserved2[3];
};
--
Coly Li
SuSE PRC Labs
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2007-10-15 7:32 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-15 7:34 [PATCH][e2fsprogs] extend bg_itable_unused into 32bit Coly Li
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).