Lines Matching refs:tail
131 #define lbmWRITE 0x0002 /* enqueue at tail of write queue;
262 /* insert page at tail of logsynclist */
502 * at tail of group commit queue
570 * write or queue the full page at the tail of write queue
572 /* get the tail tblk on commit queue */
587 /* is page bound with outstanding tail tblk ? */
1777 * (log->wrqueue points to the tail, and buffers are linked via
2014 struct lbuf *tail;
2031 * insert bp at tail of write queue associated with log
2034 * or new bp to be inserted at tail)
2036 tail = log->wqueue;
2040 /* insert at tail of wqueue */
2041 if (tail == NULL) {
2046 bp->l_wqnext = tail->l_wqnext;
2047 tail->l_wqnext = bp;
2050 tail = bp;
2054 if ((bp != tail->l_wqnext) || !(flag & lbmWRITE)) {
2168 struct lbuf *nextbp, *tail;
2228 tail = log->wqueue;
2231 if (bp == tail) {
2246 nextbp = tail->l_wqnext = bp->l_wqnext;