From: Zhi Yong Wu Date: Tue, 28 May 2013 13:31:52 +0000 (-0500) Subject: xfstests: cleanup the codes related to h_chksum X-Git-Tag: v2022.05.01~3423 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=f761cd9a6aa9b44be7f3056f01c419edf1356789;p=xfstests-dev.git xfstests: cleanup the codes related to h_chksum From: Zhi Yong Wu Since h_chksum field has gone away, we should cleanup the related codes [CC] loggen loggen.c: In function 'loggen_unmount': loggen.c:137:9: error: 'xlog_rec_header_t' has no member named 'h_chksum' loggen.c: In function 'loggen_empty': loggen.c:205:9: error: 'xlog_rec_header_t' has no member named 'h_chksum' Signed-off-by: Zhi Yong Wu Reviewed-by: Dave Chinner Signed-off-by: Rich Johnston --- diff --git a/src/loggen.c b/src/loggen.c index 4b556675..522c9178 100644 --- a/src/loggen.c +++ b/src/loggen.c @@ -134,7 +134,6 @@ loggen_unmount(int count) head->h_cycle = cpu_to_be32(param_cycle); head->h_version = cpu_to_be32(1); head->h_len = cpu_to_be32(20); - head->h_chksum = cpu_to_be32(0); head->h_prev_block = cpu_to_be32(-1); head->h_num_logops = cpu_to_be32(1); head->h_cycle_data[0] = cpu_to_be32(0xb0c0d0d0); @@ -202,7 +201,6 @@ loggen_empty(int count) sizeof(xfs_trans_header_t)+ sizeof(xfs_buf_log_format_t)+ sizeof(int)); - head->h_chksum = cpu_to_be32(0); head->h_prev_block = cpu_to_be32(-1); head->h_num_logops = cpu_to_be32(5); head->h_cycle_data[0] = cpu_to_be32(0xb0c0d0d0);