Re: [dpdk-dev] [PATCH v2] lib/table: fix cache alignment issue

2020-07-02 Thread Zhou, JunX W
Tested-by: junx.w.z...@intel.com -Original Message- From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Ting Xu Sent: Wednesday, June 17, 2020 1:44 PM To: dev@dpdk.org Cc: Dumitrescu, Cristian ; sta...@dpdk.org Subject: [dpdk-dev] [PATCH v2] lib/table: fix cache alignment issue When

[dpdk-dev] [PATCH v2] lib/table: fix cache alignment issue

2020-06-16 Thread Ting Xu
When create softnic hash table with 16 keys, it failed on 32bit environment because of the structure rte_bucket_4_16 alignment issue. Add __rte_cache_aligned to ensure correct cache align. Fixes: 8aa327214c ("table: hash") Cc: sta...@dpdk.org Signed-off-by: Ting Xu --- v1->v2: Correct patch tim