Lines Matching defs:lsn
221 xfs_lsn_t commit_lsn; /* chkpt commit record lsn */
391 * The reservation head lsn is not made up of a cycle number and block number.
434 /* lsn of 1st LR with unflushed * buffers */
443 /* log recovery lsn tracking (for buffer submission */
526 xlog_crack_atomic_lsn(atomic64_t *lsn, uint *cycle, uint *block)
528 xfs_lsn_t val = atomic64_read(lsn);
538 xlog_assign_atomic_lsn(atomic64_t *lsn, uint cycle, uint block)
540 atomic64_set(lsn, xlog_assign_lsn(cycle, block));
621 xfs_lsn_t lsn)
628 * First, sample the current lsn without locking to avoid added
643 if ((CYCLE_LSN(lsn) > cur_cycle) ||
644 (CYCLE_LSN(lsn) == cur_cycle && BLOCK_LSN(lsn) > cur_block)) {
655 if ((CYCLE_LSN(lsn) > cur_cycle) ||
656 (CYCLE_LSN(lsn) == cur_cycle && BLOCK_LSN(lsn) > cur_block))