Searched refs:tx_cons (Results 1 - 14 of 14) sorted by relevance

/freebsd-10.1-release/sys/arm/at91/
H A Dif_macbvar.h119 uint32_t tx_cons; member in struct:macb_softc
H A Dif_macb.c283 sc->tx_cons = 0;
633 sc->tx_cons = sc->tx_prod = 0;
658 if (sc->tx_cons == sc->tx_prod)
666 while (sc->tx_cons != sc->tx_prod) {
667 desc = &sc->desc_tx[sc->tx_cons];
671 td = &sc->tx_desc[sc->tx_cons];
686 MACB_DESC_INC(sc->tx_cons, MACB_MAX_TX_BUFFERS);
690 desc = &sc->desc_tx[sc->tx_cons];
694 } while (sc->tx_cons != sc->tx_prod);
/freebsd-10.1-release/sys/arm/cavium/cns11xx/
H A Dif_ecevar.h166 uint32_t tx_cons; member in struct:ece_softc
H A Dif_ece.c798 sc->tx_cons = 0;
1482 if (sc->tx_cons == sc->tx_prod) return;
1489 while (sc->tx_cons != sc->tx_prod) {
1490 desc = sc->tx_desc[sc->tx_cons].desc;
1492 struct tx_desc_info *td = &(sc->tx_desc[sc->tx_cons]);
1500 sc->tx_cons = (sc->tx_cons + 1) % ECE_MAX_TX_BUFFERS;
/freebsd-10.1-release/sys/dev/qlxgb/
H A Dqla_hw.c317 hw->tx_cons = (uint32_t *)((uint8_t *)hw->rx_cntxt_rsp + size);
402 QL_DPRINT2((ha->pci_dev, "%s: tx_cons = %p paddr %p\n",
403 __func__, hw->tx_cons, (void *)hw->tx_cons_paddr));
1342 *(hw->tx_cons) = 0;
1702 comp_idx = qla_le32_to_host(*(hw->tx_cons));
H A Dqla_isr.c401 if (qla_le32_to_host(*(hw->tx_cons)) != hw->txr_comp) {
H A Dqla_hw.h774 uint32_t *tx_cons; /* tx consumer shadow reg */ member in struct:_qla_hw
H A Dqla_os.c221 if (qla_le32_to_host(*(hw->tx_cons)) != hw->txr_comp) {
/freebsd-10.1-release/sys/dev/bge/
H A Dif_bge.c4484 bge_txeof(struct bge_softc *sc, uint16_t tx_cons) argument
4492 if (sc->bge_tx_saved_considx == tx_cons)
4503 while (sc->bge_tx_saved_considx != tx_cons) {
4533 uint16_t rx_prod, tx_cons; local
4548 tx_cons = sc->bge_ldata.bge_status_block->bge_idx[0].bge_tx_cons_idx;
4574 bge_txeof(sc, tx_cons);
4603 uint16_t rx_prod, tx_cons; local
4621 tx_cons = sc->bge_ldata.bge_status_block->bge_idx[0].bge_tx_cons_idx;
4647 bge_txeof(sc, tx_cons);
4660 uint16_t rx_prod, tx_cons; local
[all...]
/freebsd-10.1-release/sys/dev/qlxgbe/
H A Dql_hw.c450 tx_cntxt->tx_cons = (uint32_t *)vaddr;
2556 comp_idx = qla_le32_to_host(*(hw_tx_cntxt->tx_cons));
H A Dql_hw.h1399 volatile uint32_t *tx_cons; /* tx consumer shadow reg */ member in struct:_qla_hw_tx_cntxt
H A Dql_os.c240 if (qla_le32_to_host(*(hw_tx_cntxt->tx_cons)) !=
/freebsd-10.1-release/sys/dev/bce/
H A Dif_bce.c5630 sc->tx_cons = 0;
6905 "tx_cons = 0x%04X, tx_prod_bseq = 0x%08X\n",
6906 __FUNCTION__, sc->tx_prod, sc->tx_cons, sc->tx_prod_bseq);
6912 sw_tx_cons = sc->tx_cons;
7000 sc->tx_cons = sw_tx_cons;
7003 "tx_cons = 0x%04X, tx_prod_bseq = 0x%08X\n",
7004 __FUNCTION__, sc->tx_prod, sc->tx_cons, sc->tx_prod_bseq);
10892 BCE_PRINTF(" 0x%04X(0x%04X) - (sc->tx_cons) tx consumer "
10893 "index\n", sc->tx_cons, (u16) TX_CHAIN_IDX(sc->tx_cons));
[all...]
H A Dif_bcereg.h6574 u16 tx_cons; member in struct:bce_softc

Completed in 187 milliseconds