From: Theodore Ts'o Date: Thu, 30 Nov 2006 19:48:48 +0000 (-0500) Subject: Fix (as yet unused) struct ext4_group_desc to add a missing bg_pad field X-Git-Tag: E2FSPROGS-1_40~122 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=d2a3bf2ccc2df5167289e9fc084fec3cea78c950;p=tools%2Fe2fsprogs.git Fix (as yet unused) struct ext4_group_desc to add a missing bg_pad field Signed-off-by: "Theodore Ts'o" --- diff --git a/lib/ext2fs/ChangeLog b/lib/ext2fs/ChangeLog index f831544..2bbcd73 100644 --- a/lib/ext2fs/ChangeLog +++ b/lib/ext2fs/ChangeLog @@ -1,3 +1,8 @@ +2006-11-30 Theodore Tso + + * ext2_fs.h (struct ext4_group_desc): Fix missing bg_pad which + made the structure too small. + 2006-11-14 Theodore Tso * namei.c (open_namei): Rename internal variable basename to diff --git a/lib/ext2fs/ext2_fs.h b/lib/ext2fs/ext2_fs.h index 0203636..354ed1d 100644 --- a/lib/ext2fs/ext2_fs.h +++ b/lib/ext2fs/ext2_fs.h @@ -167,6 +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; __u32 bg_reserved2[3]; };