Symbol: txbd
sys/arch/powerpc/booke/dev/pq3etsec.c
123
volatile struct txbd *txq_consumer;
sys/arch/powerpc/booke/dev/pq3etsec.c
124
volatile struct txbd *txq_producer;
sys/arch/powerpc/booke/dev/pq3etsec.c
125
volatile struct txbd *txq_first;
sys/arch/powerpc/booke/dev/pq3etsec.c
126
volatile struct txbd *txq_last;
sys/arch/powerpc/booke/dev/pq3etsec.c
1262
volatile struct txbd *txbd,
sys/arch/powerpc/booke/dev/pq3etsec.c
1266
(txbd - txq->txq_first) * sizeof(*txbd), count * sizeof(*txbd),
sys/arch/powerpc/booke/dev/pq3etsec.c
1274
volatile struct txbd *txbd,
sys/arch/powerpc/booke/dev/pq3etsec.c
1278
(txbd - txq->txq_first) * sizeof(*txbd), count * sizeof(*txbd),
sys/arch/powerpc/booke/dev/pq3etsec.c
1840
size_t desc_count = map_size / sizeof(struct txbd);
sys/arch/powerpc/booke/dev/pq3etsec.c
1921
volatile struct txbd *producer = txq->txq_producer;
sys/arch/powerpc/booke/dev/pq3etsec.c
1946
volatile struct txbd *start = producer + 1;
sys/arch/powerpc/booke/dev/pq3etsec.c
2163
volatile struct txbd *consumer = txq->txq_consumer;
sys/arch/powerpc/booke/dev/pq3etsec.c
2299
volatile struct txbd *txbd;
sys/arch/powerpc/booke/dev/pq3etsec.c
2300
for (txbd = txq->txq_first; txbd < txq->txq_last - 1; txbd++) {
sys/arch/powerpc/booke/dev/pq3etsec.c
2301
txbd->txbd_flags = 0;
sys/arch/powerpc/booke/dev/pq3etsec.c
2307
txbd->txbd_flags = TXBD_W;
sys/dev/pci/if_bnx.c
4164
struct tx_bd *txbd;
sys/dev/pci/if_bnx.c
4193
txbd = &sc->tx_bd_chain[i][USABLE_TX_BD_PER_PAGE];
sys/dev/pci/if_bnx.c
4202
txbd->tx_bd_haddr_lo = addr;
sys/dev/pci/if_bnx.c
4204
txbd->tx_bd_haddr_hi = addr;
sys/dev/pci/if_bnx.c
4861
struct tx_bd *txbd = NULL;
sys/dev/pci/if_bnx.c
4874
DBRUNIF(1, txbd = &sc->tx_bd_chain
sys/dev/pci/if_bnx.c
4877
DBRUNIF((txbd == NULL),
sys/dev/pci/if_bnx.c
4883
bnx_dump_txbd(sc, sw_tx_chain_cons, txbd));
sys/dev/pci/if_bnx.c
5110
struct tx_bd *txbd = NULL;
sys/dev/pci/if_bnx.c
5205
txbd = &sc->tx_bd_chain[TX_PAGE(chain_prod)][TX_IDX(chain_prod)];
sys/dev/pci/if_bnx.c
5208
txbd->tx_bd_haddr_lo = addr;
sys/dev/pci/if_bnx.c
5210
txbd->tx_bd_haddr_hi = addr;
sys/dev/pci/if_bnx.c
5211
txbd->tx_bd_mss_nbytes = map->dm_segs[i].ds_len;
sys/dev/pci/if_bnx.c
5212
txbd->tx_bd_vlan_tag = vlan_tag;
sys/dev/pci/if_bnx.c
5213
txbd->tx_bd_flags = flags;
sys/dev/pci/if_bnx.c
5216
txbd->tx_bd_flags |= TX_BD_FLAGS_START;
sys/dev/pci/if_bnx.c
5221
txbd->tx_bd_flags |= TX_BD_FLAGS_END;
sys/dev/pci/if_bnx.c
6027
bnx_dump_txbd(struct bnx_softc *sc, int idx, struct tx_bd *txbd)
sys/dev/pci/if_bnx.c
6035
"page pointer\n", idx, txbd->tx_bd_haddr_hi,
sys/dev/pci/if_bnx.c
6036
txbd->tx_bd_haddr_lo);
sys/dev/pci/if_bnx.c
6041
txbd->tx_bd_haddr_hi, txbd->tx_bd_haddr_lo,
sys/dev/pci/if_bnx.c
6042
txbd->tx_bd_mss_nbytes, txbd->tx_bd_vlan_tag,
sys/dev/pci/if_bnx.c
6043
txbd->tx_bd_flags);
sys/dev/pci/if_bnx.c
6082
struct tx_bd *txbd;
sys/dev/pci/if_bnx.c
6108
txbd = &sc->tx_bd_chain[TX_PAGE(tx_prod)][TX_IDX(tx_prod)];
sys/dev/pci/if_bnx.c
6109
bnx_dump_txbd(sc, tx_prod, txbd);