Home
last modified time | relevance | path

Searched refs:txbufs (Results 1 – 2 of 2) sorted by relevance

/f-stack/dpdk/drivers/net/nfp/
H A Dnfp_net.c244 if (txq->txbufs == NULL) in nfp_net_tx_queue_release_mbufs()
248 if (txq->txbufs[i].mbuf) { in nfp_net_tx_queue_release_mbufs()
249 rte_pktmbuf_free_seg(txq->txbufs[i].mbuf); in nfp_net_tx_queue_release_mbufs()
250 txq->txbufs[i].mbuf = NULL; in nfp_net_tx_queue_release_mbufs()
262 rte_free(txq->txbufs); in nfp_net_tx_queue_release()
1766 txq->txbufs = rte_zmalloc_socket("txq->txbufs", in nfp_net_tx_queue_setup()
1767 sizeof(*txq->txbufs) * nb_desc, in nfp_net_tx_queue_setup()
1769 if (txq->txbufs == NULL) { in nfp_net_tx_queue_setup()
1774 txq->txbufs, txq->txds, (unsigned long int)txq->dma); in nfp_net_tx_queue_setup()
2275 lmbuf = &txq->txbufs[txq->wr_p].mbuf; in nfp_net_xmit_pkts()
[all …]
H A Dnfp_net_pmd.h228 } *txbufs; member