Home
last modified time | relevance | path

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

/dpdk/drivers/net/nfp/
H A Dnfp_rxtx.c646 if (txq->txbufs == NULL) in nfp_net_tx_queue_release_mbufs()
650 if (txq->txbufs[i].mbuf) { in nfp_net_tx_queue_release_mbufs()
651 rte_pktmbuf_free_seg(txq->txbufs[i].mbuf); in nfp_net_tx_queue_release_mbufs()
652 txq->txbufs[i].mbuf = NULL; in nfp_net_tx_queue_release_mbufs()
665 rte_free(txq->txbufs); in nfp_net_tx_queue_release()
770 txq->txbufs = rte_zmalloc_socket("txq->txbufs", in nfp_net_tx_queue_setup()
771 sizeof(*txq->txbufs) * nb_desc, in nfp_net_tx_queue_setup()
773 if (txq->txbufs == NULL) { in nfp_net_tx_queue_setup()
779 txq->txbufs, txq->txds, (unsigned long)txq->dma); in nfp_net_tx_queue_setup()
916 lmbuf = &txq->txbufs[txq->wr_p].mbuf; in nfp_net_xmit_pkts()
[all …]
H A Dnfp_rxtx.h119 } *txbufs; member