| 486 | } |
| 487 | |
| 488 | void __rte_cold |
| 489 | ionic_dev_rx_queue_release(struct rte_eth_dev *dev, uint16_t qid) |
| 490 | { |
| 491 | struct ionic_rx_qcq *rxq = dev->data->rx_queues[qid]; |
| 492 | |
| 493 | if (!rxq) |
| 494 | return; |
| 495 | |
| 496 | IONIC_PRINT_CALL(); |
| 497 | |
| 498 | ionic_qcq_free(&rxq->qcq); |
| 499 | } |
| 500 | |
| 501 | int __rte_cold |
| 502 | ionic_dev_rx_queue_setup(struct rte_eth_dev *eth_dev, |
no test coverage detected