| 711 | } |
| 712 | |
| 713 | static void bnxt_free_prev_ring_stats(struct bnxt *bp) |
| 714 | { |
| 715 | rte_free(bp->prev_rx_ring_stats); |
| 716 | rte_free(bp->prev_tx_ring_stats); |
| 717 | |
| 718 | bp->prev_rx_ring_stats = NULL; |
| 719 | bp->prev_tx_ring_stats = NULL; |
| 720 | } |
| 721 | |
| 722 | static int bnxt_alloc_prev_ring_stats(struct bnxt *bp) |
| 723 | { |
no test coverage detected