MCPcopy Index your code
hub / github.com/F-Stack/f-stack / eth_dev_txq_release

Function eth_dev_txq_release

dpdk/lib/ethdev/ethdev_private.c:400–411  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

398}
399
400void
401eth_dev_txq_release(struct rte_eth_dev *dev, uint16_t qid)
402{
403 void **txq = dev->data->tx_queues;
404
405 if (txq[qid] == NULL)
406 return;
407
408 if (dev->dev_ops->tx_queue_release != NULL)
409 (*dev->dev_ops->tx_queue_release)(dev, qid);
410 txq[qid] = NULL;
411}
412
413int
414eth_dev_rx_queue_config(struct rte_eth_dev *dev, uint16_t nb_queues)

Callers 3

rte_eth_tx_queue_setupFunction · 0.85
eth_dev_tx_queue_configFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected