| 816 | } |
| 817 | |
| 818 | static inline void |
| 819 | infinite_rx_ring_free(struct rte_ring *pkts) |
| 820 | { |
| 821 | struct rte_mbuf *bufs; |
| 822 | |
| 823 | while (!rte_ring_dequeue(pkts, (void **)&bufs)) |
| 824 | rte_pktmbuf_free(bufs); |
| 825 | |
| 826 | rte_ring_free(pkts); |
| 827 | } |
| 828 | |
| 829 | static int |
| 830 | eth_dev_close(struct rte_eth_dev *dev) |
no test coverage detected