From: Theodore Ts'o Date: Mon, 3 Dec 2018 04:30:53 +0000 (-0500) Subject: libext2fs: update tst_super_size to include new superblock fields X-Git-Tag: v1.45.0~29 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=87fe817da2cadf40baa7d76f96edc0dd617b17aa;p=tools%2Fe2fsprogs.git libext2fs: update tst_super_size to include new superblock fields Signed-off-by: Theodore Ts'o --- diff --git a/lib/ext2fs/tst_super_size.c b/lib/ext2fs/tst_super_size.c index 0adac41..a932685 100644 --- a/lib/ext2fs/tst_super_size.c +++ b/lib/ext2fs/tst_super_size.c @@ -142,7 +142,16 @@ int main(int argc, char **argv) check_field(s_lpf_ino, 4); check_field(s_prj_quota_inum, 4); check_field(s_checksum_seed, 4); - check_field(s_reserved, 98 * 4); + check_field(s_wtime_hi, 1); + check_field(s_mtime_hi, 1); + check_field(s_mkfs_time_hi, 1); + check_field(s_lastcheck_hi, 1); + check_field(s_first_error_time_hi, 1); + check_field(s_last_error_time_hi, 1); + check_field(s_pad, 2); + check_field(s_encoding, 2); + check_field(s_encoding_flags, 2); + check_field(s_reserved, 95 * 4); check_field(s_checksum, 4); do_field("Superblock end", 0, 0, cur_offset, 1024); #endif