| 227 | } |
| 228 | |
| 229 | static uint8_t |
| 230 | get_rand_frags(uint8_t max_frag) |
| 231 | { |
| 232 | uint8_t frags = rte_rand_max(max_frag + 1); |
| 233 | |
| 234 | return frags <= 1 ? MIN_FRAGMENTS : frags; |
| 235 | } |
| 236 | |
| 237 | static int |
| 238 | ipv4_rand_frag_pkt_setup(uint8_t fill_mode, uint8_t max_frag) |
no test coverage detected