Lines Matching refs:tail_cycle
1156 int tail_cycle;
1161 xlog_crack_atomic_lsn(&log->l_tail_lsn, &tail_cycle, &tail_bytes);
1163 if (tail_cycle == head_cycle && head_bytes >= tail_bytes)
1165 else if (tail_cycle + 1 < head_cycle)
1167 else if (tail_cycle < head_cycle) {
1168 ASSERT(tail_cycle == (head_cycle - 1));
1178 " tail_cycle = %d, tail_bytes = %d",
1179 tail_cycle, tail_bytes);
3510 int tail_cycle, tail_blocks;
3514 xlog_crack_atomic_lsn(&log->l_tail_lsn, &tail_cycle, &tail_blocks);
3515 if (tail_cycle != cycle) {
3516 if (cycle - 1 != tail_cycle &&
3519 "%s: cycle - 1 != tail_cycle", __func__);