* Wrapper function around rte_jhash_32b. * It is required because rte_jhash_32b() accepts the length * as size of 4-byte units. */
| 1615 | * as size of 4-byte units. |
| 1616 | */ |
| 1617 | static inline uint32_t |
| 1618 | test_jhash_32b(const void *k, uint32_t length, uint32_t initval) |
| 1619 | { |
| 1620 | return rte_jhash_32b(k, length >> 2, initval); |
| 1621 | } |
| 1622 | |
| 1623 | /* |
| 1624 | * add/delete key with jhash2 |
nothing calls this directly
no test coverage detected