From d2a3bf2ccc2df5167289e9fc084fec3cea78c950 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Thu, 30 Nov 2006 14:48:48 -0500 Subject: [PATCH] Fix (as yet unused) struct ext4_group_desc to add a missing bg_pad field Signed-off-by: "Theodore Ts'o" --- lib/ext2fs/ChangeLog | 5 +++++ lib/ext2fs/ext2_fs.h | 1 + 2 files changed, 6 insertions(+) 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]; }; -- 1.8.3.1