Searched refs:queued (Results 1 - 25 of 61) sorted by relevance

123

/freebsd-11-stable/sys/cam/
H A Dcam_iosched.c203 int queued; /* number currently in the queue */ member in struct:iop_stats
205 int in; /* number queued all time -- wraps */
657 printf("Queued reads %d writes %d\n", isc->read_stats.queued, isc->write_stats.queued);
703 ios->queued = 0;
879 OID_AUTO, "queued", CTLFLAG_RD,
880 &ios->queued, 0,
885 "# of transactions queued to driver");
1122 printf("Reads present and current_read_bias is %d queued writes %d queued read
[all...]
/freebsd-11-stable/sys/dev/iwi/
H A Dif_iwivar.h67 int queued; member in struct:iwi_cmd_ring
88 int queued; member in struct:iwi_tx_ring
/freebsd-11-stable/lib/libopenbsd/
H A Dimsg.h42 u_int32_t queued; member in struct:msgbuf
H A Dimsg-buffer.c192 msgbuf->queued = 0;
296 msgbuf->queued++;
307 msgbuf->queued--;
H A Dimsg.c290 while (ibuf->w.queued)
/freebsd-11-stable/sys/dev/firewire/
H A Dfwdev.c118 q->queued = 0;
234 ir->queued--;
344 ir->queued = 0;
364 ir->stproc->poffset + ir->queued);
373 ir->queued++;
374 if (ir->queued >= ir->bnpacket) {
477 it->queued = 0;
496 it->stproc->poffset + it->queued);
500 it->queued++;
501 if (it->queued >
[all...]
H A Dfirewire.c243 if (!(xferq->queued < xferq->maxq)) {
244 device_printf(fc->bdev, "Discard a packet (queued=%d)\n",
245 xferq->queued);
306 xfer->q->queued++;
558 xferq->queued--;
779 fc->arq->queued = 0;
780 fc->ars->queued = 0;
781 fc->atq->queued = 0;
782 fc->ats->queued = 0;
798 fc->it[i]->queued
[all...]
H A Dfirewirereg.h188 u_int queued; member in struct:fw_xferq
H A Dif_fwe.c305 xferq->queued = 0;
499 while ((xferq->queued < xferq->maxq - 1) &&
542 printf("%d queued\n", i);
/freebsd-11-stable/sys/dev/ral/
H A Drt2560var.h72 int queued; member in struct:rt2560_tx_ring
H A Drt2661var.h68 int queued; member in struct:rt2661_tx_ring
H A Drt2860var.h83 int queued; member in struct:rt2860_tx_ring
H A Drt2560.c460 ring->queued = 0;
549 ring->queued = 0;
993 sc->txq.queued--;
1000 if (sc->prioq.queued == 0 && sc->txq.queued == 0)
1003 if (sc->txq.queued < RT2560_TX_RING_COUNT - 1)
1064 sc->prioq.queued--;
1078 if (sc->prioq.queued == 0 && sc->txq.queued == 0)
1081 if (sc->prioq.queued < RT2560_PRIO_RING_COUN
[all...]
H A Drt2661.c471 ring->queued = 0;
558 ring->queued = 0;
917 txq->queued--;
1352 sc->mgtq.queued++;
1423 txq->queued++;
1569 txq->queued++;
1613 if (sc->txq[ac].queued >= RT2661_TX_RING_COUNT - 1) {
1644 if (sc->mgtq.queued >= RT2661_MGT_RING_COUNT) {
/freebsd-11-stable/sys/dev/nfe/
H A Dif_nfevar.h34 int queued; member in struct:nfe_tx_ring
/freebsd-11-stable/usr.sbin/diskinfo/
H A Ddiskinfo.c562 int error, i, queued, completed; local
587 queued = i;
608 queued++;
609 } else if (completed == queued) {
/freebsd-11-stable/sys/netpfil/ipfw/
H A Ddn_sched_qfq.c241 NO(uint32_t queued;) /* debugging */
558 NO(if (q->queued)
573 NO(q->queued--;)
603 NO(if (!q->bitmaps[ER] && q->queued)
668 NO(q->queued++;)
879 D("loops %d queued %d V 0x%llx", q->loops, q->queued, (_P64)q->V);
/freebsd-11-stable/sys/arm/allwinner/
H A Dif_awg.c134 u_int cur, next, queued; member in struct:awg_txring
352 --sc->tx.queued;
358 ++sc->tx.queued;
486 if (sc->tx.queued >= TX_DESC_COUNT - TX_MAX_SEGS) {
805 for (i = sc->tx.next; sc->tx.queued > 0; i = TX_NEXT(i)) {
1224 sc->tx.queued = TX_DESC_COUNT;
/freebsd-11-stable/contrib/ntp/sntp/libevent/test/
H A Dtest-ratelim.c82 size_t queued; member in struct:client_state
121 cs->queued += sizeof(buf);
/freebsd-11-stable/sys/dev/nxge/xgehal/
H A Dxge-queue.c249 * @queued: Optional callback function to be called each time a new item is
262 int pages_max, xge_queued_f queued, void *queued_data)
269 queue->queued_func = queued;
261 xge_queue_create(pci_dev_h pdev, pci_irq_h irqh, int pages_initial, int pages_max, xge_queued_f queued, void *queued_data) argument
/freebsd-11-stable/sys/dev/esp/
H A Dncr53c9x.c607 ecb = li->queued[i];
609 li->queued[i] = NULL;
1312 li->queued[ecb->tag_id] = ecb;
1511 if (ecb->tag[0] && li->queued[ecb->tag[1]] != NULL) {
1513 if (li->queued[ecb->tag[1]] != NULL &&
1514 (li->queued[ecb->tag[1]] != ecb))
1517 li->queued[ecb->tag[1]], ecb);
1519 li->queued[ecb->tag[1]] = NULL;
1703 ecb = li->queued[tagid];
1876 * - Dequeue ecb from the queued arra
[all...]
H A Dncr53c9xvar.h174 struct ncr53c9x_ecb *queued[NCR_TAG_DEPTH]; member in struct:ncr53c9x_linfo
/freebsd-11-stable/sys/dev/iwm/
H A Dif_iwmvar.h303 int queued; member in struct:iwm_tx_ring
/freebsd-11-stable/sys/dev/wpi/
H A Dif_wpivar.h78 int16_t queued; member in struct:wpi_tx_ring
/freebsd-11-stable/sys/dev/iwn/
H A Dif_iwnvar.h113 int queued; member in struct:iwn_tx_ring

Completed in 207 milliseconds

123