| 84 | } |
| 85 | |
| 86 | void __rte_cold |
| 87 | ionic_dev_tx_queue_release(struct rte_eth_dev *dev, uint16_t qid) |
| 88 | { |
| 89 | struct ionic_tx_qcq *txq = dev->data->tx_queues[qid]; |
| 90 | |
| 91 | IONIC_PRINT_CALL(); |
| 92 | |
| 93 | ionic_qcq_free(&txq->qcq); |
| 94 | } |
| 95 | |
| 96 | int __rte_cold |
| 97 | ionic_dev_tx_queue_stop(struct rte_eth_dev *eth_dev, uint16_t tx_queue_id) |
no test coverage detected