Whamcloud - gitweb
Fix (as yet unused) struct ext4_group_desc to add a missing bg_pad field
authorTheodore Ts'o <tytso@mit.edu>
Thu, 30 Nov 2006 19:48:48 +0000 (14:48 -0500)
committerTheodore Ts'o <tytso@mit.edu>
Thu, 30 Nov 2006 19:48:48 +0000 (14:48 -0500)
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
lib/ext2fs/ChangeLog
lib/ext2fs/ext2_fs.h

index f831544..2bbcd73 100644 (file)
@@ -1,3 +1,8 @@
+2006-11-30  Theodore Tso  <tytso@mit.edu>
+
+       * ext2_fs.h (struct ext4_group_desc): Fix missing bg_pad which
+               made the structure too small.
+
 2006-11-14  Theodore Tso  <tytso@mit.edu>
 
        * namei.c (open_namei): Rename internal variable basename to
index 0203636..354ed1d 100644 (file)
@@ -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];
 };