On 05/25/2013 07:15 PM, zwu.kernel@xxxxxxxxx wrote: > From: Zhi Yong Wu <wuzhy@xxxxxxxxxxxxxxxxxx> > > 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 <wuzhy@xxxxxxxxxxxxxxxxxx> > --- > src/loggen.c | 2 -- > 1 files changed, 0 insertions(+), 2 deletions(-) > > diff --git a/src/loggen.c b/src/loggen.c > index 4b55667..522c917 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); > I've been taking a wild guess and changing "h_chksum" to "h_crc", just as a pure sysadmin hack to keep going. Is there more than one correct answer on this issue? Michael _______________________________________________ xfs mailing list xfs@xxxxxxxxxxx http://oss.sgi.com/mailman/listinfo/xfs