table: fix hash for 32-bit
authorTing Xu <ting.xu@intel.com>
Wed, 22 Jul 2020 02:16:28 +0000 (10:16 +0800)
committerDavid Marchand <david.marchand@redhat.com>
Wed, 14 Oct 2020 12:42:29 +0000 (14:42 +0200)
commit99541c3028d741a09fe5dca95e79d8d020130173
tree7cd706c2fd189746355cff19100a001600b46a59
parentc5cf148d8915be0559b15aeff1fba649eccd1b5f
table: fix hash for 32-bit

When create softnic hash table with 16 keys, it failed on 32-bit
environment, because the pointer field in structure rte_bucket_4_16
is only 32 bits. Add a padding field in 32-bit environment to keep
the structure to a multiple of 64 bytes. Apply this to 8-byte and
32-byte key hash function as well.

Fixes: 8aa327214c ("table: hash")
Cc: stable@dpdk.org
Signed-off-by: Ting Xu <ting.xu@intel.com>
Acked-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
lib/librte_table/rte_table_hash_key16.c
lib/librte_table/rte_table_hash_key32.c
lib/librte_table/rte_table_hash_key8.c