Lines Matching defs:tx_info
1156 struct al_eth_tx_buffer *tx_info;
1159 tx_info = &tx_ring->tx_buffer_info[next_to_clean];
1161 if (tx_info->tx_descs > total_done)
1164 mbuf = tx_info->m;
1166 tx_info->m = NULL;
1172 bus_dmamap_unload(tx_ring->dma_buf_tag, tx_info->dma_map);
1175 total_done -= tx_info->tx_descs;
1192 al_eth_tx_csum(struct al_eth_ring *tx_ring, struct al_eth_tx_buffer *tx_info,
1292 struct al_eth_tx_buffer *tx_info;
1324 tx_info = &tx_ring->tx_buffer_info[next_to_use];
1325 tx_info->m = m;
1326 hal_pkt = &tx_info->hal_pkt;
1336 error = bus_dmamap_load_mbuf_sg(tx_ring->dma_buf_tag, tx_info->dma_map,
1367 al_eth_tx_csum(tx_ring, tx_info, hal_pkt, m);
1380 tx_info->tx_descs = al_eth_tx_pkt_prepare(tx_ring->dma_q, hal_pkt);
1382 if (tx_info->tx_descs == 0)
1400 al_eth_tx_dma_action(tx_ring->dma_q, tx_info->tx_descs);