/src/sys/dev/pci/ |
if_ipwvar.h | 148 int txfree; member in struct:ipw_softc
|
if_mcx.c | 7058 int rxfree, txfree; local in function:mcx_process_cq 7070 txfree = 0; 7076 txfree += mcx_process_txeof(sc, tx, cqe); 7115 if (txfree > 0) { 7116 tx->tx_cons += txfree;
|
/src/sys/arch/arm/ti/ |
if_cpsw.c | 619 u_int txfree; local in function:cpsw_start 636 txfree = CPSW_NTXDESCS - 1 + sc->sc_txhead - sc->sc_txnext; 638 txfree = sc->sc_txhead - sc->sc_txnext - 1; 641 txfree, sc->sc_txhead, sc->sc_txnext, sc->sc_txrun); 643 while (txfree > 0) { 662 if (dm->dm_nsegs + 1 >= txfree) { 696 txfree--; 708 txfree--; 735 txfree, sc->sc_txhead, sc->sc_txnext, sc->sc_txrun);
|
/src/sys/arch/arm/broadcom/ |
bcm53xx_eth.c | 1603 size_t txfree = 0; local in function:bcmeth_txq_consume 1612 txq->txq_free += txfree; 1613 txq->txq_lastintr -= uimin(txq->txq_lastintr, txfree); 1616 "%zu to %zu\n", __func__, txfree, 1617 txq->txq_free - txfree, txq->txq_free); 1628 txq->txq_free += txfree; 1629 txq->txq_lastintr -= uimin(txq->txq_lastintr, txfree); 1632 __func__, txfree); 1663 txfree++;
|
/src/sys/arch/powerpc/booke/dev/ |
pq3etsec.c | 2164 size_t txfree = 0; local in function:pq3etsec_txq_consume 2175 txq->txq_free += txfree; 2176 txq->txq_lastintr -= uimin(txq->txq_lastintr, txfree); 2187 txq->txq_free += txfree; 2188 txq->txq_lastintr -= uimin(txq->txq_lastintr, txfree); 2240 txfree++; 2255 if (txfree != 0) 2256 rnd_add_uint32(&sc->rnd_source, txfree);
|