MCPcopy Create free account
hub / github.com/F-Stack/f-stack / ixgbe_tx_queue_release

Function ixgbe_tx_queue_release

dpdk/drivers/net/ixgbe/ixgbe_rxtx.c:2471–2480  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2469}
2470
2471static void __rte_cold
2472ixgbe_tx_queue_release(struct ixgbe_tx_queue *txq)
2473{
2474 if (txq != NULL && txq->ops != NULL) {
2475 txq->ops->release_mbufs(txq);
2476 txq->ops->free_swring(txq);
2477 rte_memzone_free(txq->mz);
2478 rte_free(txq);
2479 }
2480}
2481
2482void __rte_cold
2483ixgbe_dev_tx_queue_release(struct rte_eth_dev *dev, uint16_t qid)

Callers 2

ixgbe_dev_tx_queue_setupFunction · 0.85

Calls 2

rte_memzone_freeFunction · 0.85
rte_freeFunction · 0.85

Tested by

no test coverage detected