| 129 | }; |
| 130 | |
| 131 | static uint64_t |
| 132 | get_rnd_rng(uint64_t l, uint64_t u) |
| 133 | { |
| 134 | if (l == u) |
| 135 | return l; |
| 136 | else |
| 137 | return (rte_rand() % (u - l) + l); |
| 138 | } |
| 139 | |
| 140 | static __rte_always_inline __attribute__((pure)) uint8_t |
| 141 | bits_in_nh(uint8_t nh_sz) |
no test coverage detected