| 1019 | } |
| 1020 | |
| 1021 | static inline void |
| 1022 | free_pkts(struct rte_mbuf **pkts, uint16_t n) |
| 1023 | { |
| 1024 | while (n--) |
| 1025 | rte_pktmbuf_free(pkts[n]); |
| 1026 | } |
| 1027 | |
| 1028 | static __rte_always_inline void |
| 1029 | complete_async_pkts(struct vhost_dev *vdev) |
no test coverage detected