Lines Matching refs:curband
33 u16 curband; member
103 q->curband++; in multiq_dequeue()
104 if (q->curband >= q->bands) in multiq_dequeue()
105 q->curband = 0; in multiq_dequeue()
111 netdev_get_tx_queue(qdisc_dev(sch), q->curband))) { in multiq_dequeue()
112 qdisc = q->queues[q->curband]; in multiq_dequeue()
128 unsigned int curband = q->curband; in multiq_peek() local
135 curband++; in multiq_peek()
136 if (curband >= q->bands) in multiq_peek()
137 curband = 0; in multiq_peek()
143 netdev_get_tx_queue(qdisc_dev(sch), curband))) { in multiq_peek()
144 qdisc = q->queues[curband]; in multiq_peek()
184 q->curband = 0; in multiq_reset()