Lines Matching refs:tail
761 struct ext4_fc_tail tail; in ext4_fc_write_tail() local
769 dst = ext4_fc_reserve_space(sb, EXT4_FC_TAG_BASE_LEN + sizeof(tail), &crc); in ext4_fc_write_tail()
781 tail.fc_tid = cpu_to_le32(sbi->s_journal->j_running_transaction->t_tid); in ext4_fc_write_tail()
782 memcpy(dst, &tail.fc_tid, sizeof(tail.fc_tid)); in ext4_fc_write_tail()
783 dst += sizeof(tail.fc_tid); in ext4_fc_write_tail()
786 tail.fc_crc = cpu_to_le32(crc); in ext4_fc_write_tail()
787 memcpy(dst, &tail.fc_crc, sizeof(tail.fc_crc)); in ext4_fc_write_tail()
788 dst += sizeof(tail.fc_crc); in ext4_fc_write_tail()
2076 struct ext4_fc_tail tail; in ext4_fc_replay_scan() local
2141 memcpy(&tail, val, sizeof(tail)); in ext4_fc_replay_scan()
2146 if (le32_to_cpu(tail.fc_tid) == expected_tid && in ext4_fc_replay_scan()
2147 le32_to_cpu(tail.fc_crc) == state->fc_crc) { in ext4_fc_replay_scan()
2198 struct ext4_fc_tail tail; in ext4_fc_replay() local
2264 memcpy(&tail, val, sizeof(tail)); in ext4_fc_replay()
2265 WARN_ON(le32_to_cpu(tail.fc_tid) != expected_tid); in ext4_fc_replay()