Lines Matching refs:tail
673 struct ext4_fc_tail tail; in ext4_fc_write_tail() local
681 dst = ext4_fc_reserve_space(sb, sizeof(tl) + sizeof(tail), &crc); in ext4_fc_write_tail()
693 tail.fc_tid = cpu_to_le32(sbi->s_journal->j_running_transaction->t_tid); in ext4_fc_write_tail()
694 ext4_fc_memcpy(sb, dst, &tail.fc_tid, sizeof(tail.fc_tid), &crc); in ext4_fc_write_tail()
695 dst += sizeof(tail.fc_tid); in ext4_fc_write_tail()
696 tail.fc_crc = cpu_to_le32(crc); in ext4_fc_write_tail()
697 ext4_fc_memcpy(sb, dst, &tail.fc_crc, sizeof(tail.fc_crc), NULL); in ext4_fc_write_tail()
698 dst += sizeof(tail.fc_crc); in ext4_fc_write_tail()
1942 struct ext4_fc_tail tail; in ext4_fc_replay_scan() local
2000 memcpy(&tail, val, sizeof(tail)); in ext4_fc_replay_scan()
2005 if (le32_to_cpu(tail.fc_tid) == expected_tid && in ext4_fc_replay_scan()
2006 le32_to_cpu(tail.fc_crc) == state->fc_crc) { in ext4_fc_replay_scan()
2057 struct ext4_fc_tail tail; in ext4_fc_replay() local
2122 memcpy(&tail, val, sizeof(tail)); in ext4_fc_replay()
2123 WARN_ON(le32_to_cpu(tail.fc_tid) != expected_tid); in ext4_fc_replay()