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

/freebsd-13-stable/sys/dev/qlxgbe/
H A Dql_os.c482 device_printf(dev, "%s: could not allocate tx_br[%d]\n",
1375 fp->tx_br = buf_ring_alloc(NUM_TX_DESCRIPTORS, M_DEVBUF,
1377 if (fp->tx_br == NULL) {
1392 if (fp->tx_br != NULL) {
1395 while ((mp = drbr_dequeue(ifp, fp->tx_br)) != NULL) {
1401 buf_ring_free(fp->tx_br, M_DEVBUF);
1402 fp->tx_br = NULL;
1450 mp = drbr_peek(ifp, fp->tx_br);
1470 drbr_putback(ifp, fp->tx_br, mp);
1472 drbr_advance(ifp, fp->tx_br);
[all...]
H A Dql_def.h121 struct buf_ring *tx_br; member in struct:_qla_tx_fp
/freebsd-13-stable/sys/dev/qlnx/qlnxe/
H A Dqlnx_os.c586 if (!drbr_empty(ifp, fp->tx_br)) {
1014 device_printf(dev, "could not allocate tx_br[%d]\n", i);
3043 ret = drbr_enqueue(ifp, fp->tx_br, mp);
3048 ret = drbr_enqueue(ifp, fp->tx_br, mp);
3050 mp = drbr_peek(ifp, fp->tx_br);
3055 drbr_putback(ifp, fp->tx_br, mp);
3058 drbr_advance(ifp, fp->tx_br);
3063 drbr_advance(ifp, fp->tx_br);
3068 mp = drbr_peek(ifp, fp->tx_br);
3104 if (fp->tx_br
[all...]
H A Dqlnx_def.h188 struct buf_ring *tx_br; member in struct:qlnx_fastpath
/freebsd-13-stable/sys/dev/bxe/
H A Dbxe.c5645 struct buf_ring *tx_br = fp->tx_br; local
5659 if (!tx_br) {
5665 rc = drbr_enqueue(ifp, tx_br, m);
5678 depth = drbr_inuse_drv(ifp, tx_br);
5684 while ((next = drbr_peek(ifp, tx_br)) != NULL) {
5694 drbr_advance(ifp, tx_br);
5714 drbr_putback(ifp, tx_br, next);
5718 drbr_advance(ifp, tx_br);
5730 drbr_advance(ifp, tx_br);
[all...]
H A Dbxe.h684 struct buf_ring *tx_br; member in struct:bxe_fastpath

Completed in 208 milliseconds