Lines Matching refs:tail
706 struct ext4_fc_tail tail; in ext4_fc_write_tail() local
714 dst = ext4_fc_reserve_space(sb, EXT4_FC_TAG_BASE_LEN + sizeof(tail), &crc); in ext4_fc_write_tail()
726 tail.fc_tid = cpu_to_le32(sbi->s_journal->j_running_transaction->t_tid); in ext4_fc_write_tail()
727 ext4_fc_memcpy(sb, dst, &tail.fc_tid, sizeof(tail.fc_tid), &crc); in ext4_fc_write_tail()
728 dst += sizeof(tail.fc_tid); in ext4_fc_write_tail()
729 tail.fc_crc = cpu_to_le32(crc); in ext4_fc_write_tail()
730 ext4_fc_memcpy(sb, dst, &tail.fc_crc, sizeof(tail.fc_crc), NULL); in ext4_fc_write_tail()
731 dst += sizeof(tail.fc_crc); in ext4_fc_write_tail()
1984 struct ext4_fc_tail tail; in ext4_fc_replay_scan() local
2049 memcpy(&tail, val, sizeof(tail)); in ext4_fc_replay_scan()
2054 if (le32_to_cpu(tail.fc_tid) == expected_tid && in ext4_fc_replay_scan()
2055 le32_to_cpu(tail.fc_crc) == state->fc_crc) { in ext4_fc_replay_scan()
2106 struct ext4_fc_tail tail; in ext4_fc_replay() local
2172 memcpy(&tail, val, sizeof(tail)); in ext4_fc_replay()
2173 WARN_ON(le32_to_cpu(tail.fc_tid) != expected_tid); in ext4_fc_replay()