| 1272 | } |
| 1273 | |
| 1274 | static void |
| 1275 | igb_tx_queue_release(struct igb_tx_queue *txq) |
| 1276 | { |
| 1277 | if (txq != NULL) { |
| 1278 | igb_tx_queue_release_mbufs(txq); |
| 1279 | rte_free(txq->sw_ring); |
| 1280 | rte_memzone_free(txq->mz); |
| 1281 | rte_free(txq); |
| 1282 | } |
| 1283 | } |
| 1284 | |
| 1285 | void |
| 1286 | eth_igb_tx_queue_release(struct rte_eth_dev *dev, uint16_t qid) |
no test coverage detected