HomeSort by: relevance | last modified time | path
    Searched refs:txqc (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/arch/arm/at91/
at91emacvar.h 63 int txqi, txqc; member in struct:emac_softc
at91emac.c 183 while (sc->txqc > (tsr & ETH_TSR_IDLE ? 0 : 1)) {
189 DPRINTFN(2,("%s: freed idx #%i mbuf %p (txqc=%i)\n",
190 __FUNCTION__, i, sc->txq[i].m, sc->txqc));
193 sc->txqc--;
620 bi = (sc->txqi + sc->txqc) % TX_QLEN;
660 sc->txqc++;
662 DPRINTFN(2,("%s: start sending idx #%i mbuf %p (txqc=%i, phys %p), len=%u\n", __FUNCTION__, bi, sc->txq[bi].m, sc->txqc, (void*)segs->ds_addr,
665 if (sc->txqc > TX_QLEN) {
666 panic("%s: txqc %i > %i", __FUNCTION__, sc->txqc, TX_QLEN)
    [all...]
  /src/sys/dev/cadence/
if_cemacvar.h 69 int txqi, txqc; member in struct:cemac_softc
if_cemac.c 215 while (sc->txqc > (ISSET(sc->cemac_flags, CEMAC_FLAG_GEM) ? 0 :
228 DPRINTFN(2,("%s: freed idx #%i mbuf %p (txqc=%i)\n",
229 __FUNCTION__, bi, sc->txq[bi].m, sc->txqc));
232 sc->txqc--;
889 bi = (sc->txqi + sc->txqc) % TX_QLEN;
929 sc->txqc++;
931 DPRINTFN(2,("%s: start sending idx #%i mbuf %p (txqc=%i, phys %p), "
932 "len=%u\n", __FUNCTION__, bi, sc->txq[bi].m, sc->txqc,
935 if (sc->txqc > TX_QLEN)
936 panic("%s: txqc %i > %i", __FUNCTION__, sc->txqc, TX_QLEN)
    [all...]

Completed in 13 milliseconds