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

  /src/sys/dev/ic/
dp8390var.h 61 u_short txb_new; /* pointer to where new buffer will be added */ member in struct:dp8390_softc
dp8390.c 281 sc->txb_new = 0;
405 if ((sc->txb_next_tx + sc->txb_inuse) % sc->txb_cnt != sc->txb_new)
407 sc->txb_next_tx, sc->txb_inuse, sc->txb_cnt, sc->txb_new);
476 /* txb_new points to next open buffer slot. */
478 ((sc->txb_new * ED_TXBUF_SIZE) << ED_PAGE_SHIFT);
483 sc->txb_len[sc->txb_new] = len;
486 if (++sc->txb_new == sc->txb_cnt)
487 sc->txb_new = 0;

Completed in 11 milliseconds