Lines Matching refs:tail
131 #define lbmWRITE 0x0002 /* enqueue at tail of write queue;
262 /* insert page at tail of logsynclist */
510 * at tail of group commit queue
578 * write or queue the full page at the tail of write queue
580 /* get the tail tblk on commit queue */
595 /* is page bound with outstanding tail tblk ? */
1785 * (log->wrqueue points to the tail, and buffers are linked via
2026 struct lbuf *tail;
2043 * insert bp at tail of write queue associated with log
2046 * or new bp to be inserted at tail)
2048 tail = log->wqueue;
2052 /* insert at tail of wqueue */
2053 if (tail == NULL) {
2058 bp->l_wqnext = tail->l_wqnext;
2059 tail->l_wqnext = bp;
2062 tail = bp;
2066 if ((bp != tail->l_wqnext) || !(flag & lbmWRITE)) {
2183 struct lbuf *nextbp, *tail;
2243 tail = log->wqueue;
2246 if (bp == tail) {
2261 nextbp = tail->l_wqnext = bp->l_wqnext;