Searched refs:completed_trs (Results 1 - 2 of 2) sorted by relevance

/xnu-2782.1.97/bsd/vfs/
H A Dvfs_journal.h178 transaction *completed_trs; // out-of-order transactions that completed member in struct:journal
H A Dvfs_journal.c661 // go through the completed_trs list and try to coalesce
663 for (ctr = jnl->completed_trs; ctr; prev=ctr, ctr=next) {
669 if (ctr == jnl->completed_trs) {
670 jnl->completed_trs = ctr->next;
673 next = jnl->completed_trs; // this starts us over again
679 next = jnl->completed_trs; // this starts us over again
695 next = jnl->completed_trs; // this starts us over again
711 for (ctr = jnl->completed_trs; ctr && tr->journal_start > ctr->journal_start; prev=ctr, ctr=ctr->next) {
716 jnl->completed_trs = tr;
718 } else if (ctr == jnl->completed_trs) {
[all...]

Completed in 74 milliseconds