| 257 | } |
| 258 | |
| 259 | static void bnxt_free_cos_queues(struct bnxt *bp) |
| 260 | { |
| 261 | rte_free(bp->rx_cos_queue); |
| 262 | bp->rx_cos_queue = NULL; |
| 263 | rte_free(bp->tx_cos_queue); |
| 264 | bp->tx_cos_queue = NULL; |
| 265 | } |
| 266 | |
| 267 | static void bnxt_free_mem(struct bnxt *bp, bool reconfig) |
| 268 | { |
no test coverage detected