On Tue, May 04, 2021 at 12:29:21AM -0600, Andreas Dilger wrote: > > @@ -344,10 +361,10 @@ static int ext4_fc_replay_scan(journal_t *j, struct buffer_head *bh, > > offsetof(struct ext4_fc_tail, > > fc_crc)); > > jbd_debug(1, "tail tid %d, expected %d\n", > > - le32_to_cpu(tail->fc_tid), > > + get_le32(&tail->fc_tid), > > expected_tid); > > - if (le32_to_cpu(tail->fc_tid) == expected_tid && > > - le32_to_cpu(tail->fc_crc) == state->fc_crc) { > > + if (get_le32(&tail->fc_tid) == expected_tid && > > + get_le32(&tail->fc_crc) == state->fc_crc) { > > (style) better to align continued line after '(' on previous line? That way > it can be distinguished from the next (body) line more easily Thanks, I fixed up the whitespace style issues (which were in the original code, but while we're modifying these lines, might as well fix them up). - Ted