| 243 | } |
| 244 | |
| 245 | static inline void |
| 246 | test_free_fragments(struct rte_mbuf *mb[], uint32_t num) |
| 247 | { |
| 248 | uint32_t i; |
| 249 | for (i = 0; i < num; i++) |
| 250 | rte_pktmbuf_free(mb[i]); |
| 251 | } |
| 252 | |
| 253 | static inline void |
| 254 | test_get_offset(struct rte_mbuf **mb, int32_t len, |
no test coverage detected