Home
last modified time | relevance | path

Searched refs:txbuffs (Results 1 – 3 of 3) sorted by relevance

/dpdk/drivers/net/thunderx/
H A Dnicvf_rxtx.c78 struct rte_mbuf **txbuffs = sq->txbuffs; in nicvf_single_pool_free_xmited_buffers() local
83 if (txbuffs[head]) in nicvf_single_pool_free_xmited_buffers()
101 struct rte_mbuf **txbuffs = sq->txbuffs; in nicvf_multi_pool_free_xmited_buffers() local
105 if (txbuffs[head]) { in nicvf_multi_pool_free_xmited_buffers()
153 struct rte_mbuf **txbuffs = sq->txbuffs; in nicvf_xmit_pkts() local
163 txbuffs[tail] = NULL; in nicvf_xmit_pkts()
167 txbuffs[tail] = pkt; in nicvf_xmit_pkts()
192 struct rte_mbuf **txbuffs = sq->txbuffs; in nicvf_xmit_pkts_multiseg() local
214 txbuffs[tail] = NULL; in nicvf_xmit_pkts_multiseg()
218 txbuffs[tail] = pkt; in nicvf_xmit_pkts_multiseg()
[all …]
H A Dnicvf_struct.h32 struct rte_mbuf **txbuffs; member
H A Dnicvf_ethdev.c696 if (txq->txbuffs[head]) { in nicvf_tx_queue_release_mbufs()
697 rte_pktmbuf_free_seg(txq->txbuffs[head]); in nicvf_tx_queue_release_mbufs()
698 txq->txbuffs[head] = NULL; in nicvf_tx_queue_release_mbufs()
711 memset(txq->txbuffs, 0, sizeof(struct rte_mbuf *) * txq_desc_cnt); in nicvf_tx_queue_reset()
854 if (txq->txbuffs != NULL) { in nicvf_dev_tx_queue_release()
856 rte_free(txq->txbuffs); in nicvf_dev_tx_queue_release()
857 txq->txbuffs = NULL; in nicvf_dev_tx_queue_release()
1011 txq->txbuffs = rte_zmalloc_socket("txq->txbuffs", in nicvf_dev_tx_queue_setup()
1015 if (txq->txbuffs == NULL) { in nicvf_dev_tx_queue_setup()