Lines Matching refs:txbd

5519 	struct tx_bd *txbd;  in bce_init_tx_chain()  local
5547 txbd = &sc->tx_bd_chain[i][USABLE_TX_BD_PER_PAGE]; in bce_init_tx_chain()
5555 txbd->tx_bd_haddr_hi = in bce_init_tx_chain()
5557 txbd->tx_bd_haddr_lo = in bce_init_tx_chain()
6790 struct tx_bd *txbd = NULL; in bce_tx_intr() local
6805 DBRUN(txbd = &sc->tx_bd_chain[TX_PAGE(sw_tx_chain_cons)] in bce_tx_intr()
6808 DBRUNIF((txbd == NULL), in bce_tx_intr()
6814 bce_dump_txbd(sc, sw_tx_chain_cons, txbd)); in bce_tx_intr()
6823 DBRUNIF((!(txbd->tx_bd_flags & TX_BD_FLAGS_END)), in bce_tx_intr()
7217 struct tx_bd *txbd = NULL; in bce_tx_encap() local
7343 txbd= &sc->tx_bd_chain[TX_PAGE(chain_prod)] in bce_tx_encap()
7346 txbd->tx_bd_haddr_lo = in bce_tx_encap()
7348 txbd->tx_bd_haddr_hi = in bce_tx_encap()
7350 txbd->tx_bd_mss_nbytes = htole32(mss << 16) | in bce_tx_encap()
7352 txbd->tx_bd_vlan_tag = htole16(vlan_tag); in bce_tx_encap()
7353 txbd->tx_bd_flags = htole16(flags); in bce_tx_encap()
7356 txbd->tx_bd_flags |= htole16(TX_BD_FLAGS_START); in bce_tx_encap()
7361 txbd->tx_bd_flags |= htole16(TX_BD_FLAGS_END); in bce_tx_encap()
9784 bce_dump_txbd(struct bce_softc *sc, int idx, struct tx_bd *txbd) in bce_dump_txbd() argument
9794 "pointer\n", idx, txbd->tx_bd_haddr_hi, in bce_dump_txbd()
9795 txbd->tx_bd_haddr_lo); in bce_dump_txbd()
9800 "0x%04X (", idx, txbd->tx_bd_haddr_hi, in bce_dump_txbd()
9801 txbd->tx_bd_haddr_lo, txbd->tx_bd_mss_nbytes, in bce_dump_txbd()
9802 txbd->tx_bd_vlan_tag, txbd->tx_bd_flags); in bce_dump_txbd()
9804 if (txbd->tx_bd_flags & TX_BD_FLAGS_CONN_FAULT) { in bce_dump_txbd()
9811 if (txbd->tx_bd_flags & TX_BD_FLAGS_TCP_UDP_CKSUM) { in bce_dump_txbd()
9818 if (txbd->tx_bd_flags & TX_BD_FLAGS_IP_CKSUM) { in bce_dump_txbd()
9825 if (txbd->tx_bd_flags & TX_BD_FLAGS_VLAN_TAG) { in bce_dump_txbd()
9832 if (txbd->tx_bd_flags & TX_BD_FLAGS_COAL_NOW) { in bce_dump_txbd()
9839 if (txbd->tx_bd_flags & TX_BD_FLAGS_DONT_GEN_CRC) { in bce_dump_txbd()
9846 if (txbd->tx_bd_flags & TX_BD_FLAGS_START) { in bce_dump_txbd()
9853 if (txbd->tx_bd_flags & TX_BD_FLAGS_END) { in bce_dump_txbd()
9860 if (txbd->tx_bd_flags & TX_BD_FLAGS_SW_LSO) { in bce_dump_txbd()
9867 if (txbd->tx_bd_flags & TX_BD_FLAGS_SW_OPTION_WORD) { in bce_dump_txbd()
9870 printf("SW_OPTION=%d", ((txbd->tx_bd_flags & in bce_dump_txbd()
9874 if (txbd->tx_bd_flags & TX_BD_FLAGS_SW_FLAGS) { in bce_dump_txbd()
9881 if (txbd->tx_bd_flags & TX_BD_FLAGS_SW_SNAP) { in bce_dump_txbd()
10331 struct tx_bd *txbd; in bce_dump_tx_chain() local
10352 txbd = &sc->tx_bd_chain[TX_PAGE(tx_prod)][TX_IDX(tx_prod)]; in bce_dump_tx_chain()
10353 bce_dump_txbd(sc, tx_prod, txbd); in bce_dump_tx_chain()