Lines Matching refs:txe
397 struct igb_tx_entry *txe, *txn; in eth_igb_xmit_pkts() local
422 txe = &sw_ring[tx_id]; in eth_igb_xmit_pkts()
428 RTE_MBUF_PREFETCH_TO_FREE(txe->mbuf); in eth_igb_xmit_pkts()
561 txn = &sw_ring[txe->next_id]; in eth_igb_xmit_pkts()
564 if (txe->mbuf != NULL) { in eth_igb_xmit_pkts()
565 rte_pktmbuf_free_seg(txe->mbuf); in eth_igb_xmit_pkts()
566 txe->mbuf = NULL; in eth_igb_xmit_pkts()
571 txe->last_id = tx_last; in eth_igb_xmit_pkts()
572 tx_id = txe->next_id; in eth_igb_xmit_pkts()
573 txe = txn; in eth_igb_xmit_pkts()
584 txn = &sw_ring[txe->next_id]; in eth_igb_xmit_pkts()
587 if (txe->mbuf != NULL) in eth_igb_xmit_pkts()
588 rte_pktmbuf_free_seg(txe->mbuf); in eth_igb_xmit_pkts()
589 txe->mbuf = m_seg; in eth_igb_xmit_pkts()
607 txe->last_id = tx_last; in eth_igb_xmit_pkts()
608 tx_id = txe->next_id; in eth_igb_xmit_pkts()
609 txe = txn; in eth_igb_xmit_pkts()
1444 struct igb_tx_entry *txe = txq->sw_ring; in igb_reset_tx_queue() local
1460 txe[i].mbuf = NULL; in igb_reset_tx_queue()
1461 txe[i].last_id = i; in igb_reset_tx_queue()
1462 txe[prev].next_id = i; in igb_reset_tx_queue()