Lines Matching refs:qbp

3414 	qband_t *qbp, *nqbp;  in freeq()  local
3493 qbp = qp->q_bandp; in freeq()
3494 while (qbp) { in freeq()
3495 nqbp = qbp->qb_next; in freeq()
3496 freeband(qbp); in freeq()
3497 qbp = nqbp; in freeq()
3499 qbp = wqp->q_bandp; in freeq()
3500 while (qbp) { in freeq()
3501 nqbp = qbp->qb_next; in freeq()
3502 freeband(qbp); in freeq()
3503 qbp = nqbp; in freeq()
3514 qband_t *qbp; in allocband() local
3516 qbp = kmem_cache_alloc(qband_cache, KM_NOSLEEP); in allocband()
3517 if (qbp == NULL) in allocband()
3520 qbp->qb_next = NULL; in allocband()
3521 qbp->qb_count = 0; in allocband()
3522 qbp->qb_mblkcnt = 0; in allocband()
3523 qbp->qb_first = NULL; in allocband()
3524 qbp->qb_last = NULL; in allocband()
3525 qbp->qb_flag = 0; in allocband()
3527 return (qbp); in allocband()
3534 freeband(qband_t *qbp) in freeband() argument
3536 kmem_cache_free(qband_cache, qbp); in freeband()
3633 qband_t *qbp; in runservice() local
3657 for (qbp = q->q_bandp; qbp; qbp = qbp->qb_next) in runservice()
3658 qbp->qb_flag &= ~QB_BACK; in runservice()
4093 qband_t *qbp; in setqback() local
4114 qbp = q->q_bandp; in setqback()
4117 qbp = qbp->qb_next; in setqback()
4118 qbp->qb_flag |= QB_BACK; in setqback()
4715 qband_t *qbp; in backenable_insertedq() local
4722 qbp = q->q_next->q_nfsrv->q_bandp; in backenable_insertedq()
4723 for (; qbp != NULL; qbp = qbp->qb_next) in backenable_insertedq()
4724 if ((qbp->qb_flag & QB_WANTW) && qbp->qb_first != NULL) in backenable_insertedq()
4725 backenable(q, qbp->qb_first->b_band); in backenable_insertedq()