test/hash: use jhash for multi-writer
authorYipeng Wang <yipeng1.wang@intel.com>
Fri, 26 Oct 2018 09:53:42 +0000 (02:53 -0700)
committerThomas Monjalon <thomas@monjalon.net>
Fri, 26 Oct 2018 20:01:43 +0000 (22:01 +0200)
With sequential key, the test will cover more corner
cases with jhash instead of crc hash, since jhash
generates more random hash pattern on sequential key.
It is useful for functional verification.

Signed-off-by: Yipeng Wang <yipeng1.wang@intel.com>
test/test/test_hash_multiwriter.c

index 6a3eb10..d447f6d 100644 (file)
@@ -12,6 +12,7 @@
 #include <rte_malloc.h>
 #include <rte_random.h>
 #include <rte_spinlock.h>
+#include <rte_jhash.h>
 
 #include "test.h"
 
@@ -108,7 +109,7 @@ test_hash_multiwriter(void)
        struct rte_hash_parameters hash_params = {
                .entries = nb_entries,
                .key_len = sizeof(uint32_t),
-               .hash_func = rte_hash_crc,
+               .hash_func = rte_jhash,
                .hash_func_init_val = 0,
                .socket_id = rte_socket_id(),
        };