Searched refs:tx_br (Results 1 - 6 of 6) sorted by relevance

/freebsd-11-stable/sys/dev/qlxgbe/
H A Dql_os.c486 device_printf(dev, "%s: could not allocate tx_br[%d]\n",
1394 fp->tx_br = buf_ring_alloc(NUM_TX_DESCRIPTORS, M_DEVBUF,
1396 if (fp->tx_br == NULL) {
1412 if (fp->tx_br != NULL) {
1416 while ((mp = drbr_dequeue(ifp, fp->tx_br)) != NULL) {
1422 buf_ring_free(fp->tx_br, M_DEVBUF);
1423 fp->tx_br = NULL;
1471 mp = drbr_peek(ifp, fp->tx_br);
1492 drbr_putback(ifp, fp->tx_br, mp);
1494 drbr_advance(ifp, fp->tx_br);
[all...]
H A Dql_def.h119 struct buf_ring *tx_br; member in struct:_qla_tx_fp
/freebsd-11-stable/sys/dev/qlnx/qlnxe/
H A Dqlnx_os.c596 if (!drbr_empty(ifp, fp->tx_br)) {
1034 device_printf(dev, "could not allocate tx_br[%d]\n", i);
3102 ret = drbr_enqueue(ifp, fp->tx_br, mp);
3107 ret = drbr_enqueue(ifp, fp->tx_br, mp);
3109 mp = drbr_peek(ifp, fp->tx_br);
3116 drbr_putback(ifp, fp->tx_br, mp);
3119 drbr_advance(ifp, fp->tx_br);
3124 drbr_advance(ifp, fp->tx_br);
3129 mp = drbr_peek(ifp, fp->tx_br);
3166 if (fp->tx_br
[all...]
H A Dqlnx_def.h195 struct buf_ring *tx_br; member in struct:qlnx_fastpath
/freebsd-11-stable/sys/dev/bxe/
H A Dbxe.c5677 struct buf_ring *tx_br = fp->tx_br; local
5691 if (!tx_br) {
5697 rc = drbr_enqueue(ifp, tx_br, m);
5710 depth = drbr_inuse_drv(ifp, tx_br);
5716 while ((next = drbr_peek(ifp, tx_br)) != NULL) {
5726 drbr_advance(ifp, tx_br);
5746 drbr_putback(ifp, tx_br, next);
5750 drbr_advance(ifp, tx_br);
5762 drbr_advance(ifp, tx_br);
[all...]
H A Dbxe.h710 struct buf_ring *tx_br; member in struct:bxe_fastpath

Completed in 255 milliseconds