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

Function eth_dev_rxq_release

dpdk/lib/ethdev/ethdev_private.c:387–398  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

385}
386
387void
388eth_dev_rxq_release(struct rte_eth_dev *dev, uint16_t qid)
389{
390 void **rxq = dev->data->rx_queues;
391
392 if (rxq[qid] == NULL)
393 return;
394
395 if (dev->dev_ops->rx_queue_release != NULL)
396 (*dev->dev_ops->rx_queue_release)(dev, qid);
397 rxq[qid] = NULL;
398}
399
400void
401eth_dev_txq_release(struct rte_eth_dev *dev, uint16_t qid)

Callers 3

rte_eth_rx_queue_setupFunction · 0.85
eth_dev_rx_queue_configFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected