Re: [dpdk-dev] [PATCH v2] keepalive: fix keepalive state alignment

2018-01-25 Thread Thomas Monjalon
24/01/2018 12:55, Remy Horton: > Done quick smoke test and it all seems fine :) > > On 23/01/2018 15:43, Andriy Berestovskyy wrote: > [..] > > Fixes: e70a61ad50ab ("keepalive: export states") > > Cc: remy.hor...@intel.com > > Signed-off-by: Andriy Berestovskyy > > Acked-by: Remy Horton Applied

Re: [dpdk-dev] [PATCH v2] keepalive: fix keepalive state alignment

2018-01-24 Thread Remy Horton
Done quick smoke test and it all seems fine :) On 23/01/2018 15:43, Andriy Berestovskyy wrote: [..] Fixes: e70a61ad50ab ("keepalive: export states") Cc: remy.hor...@intel.com Signed-off-by: Andriy Berestovskyy Acked-by: Remy Horton

[dpdk-dev] [PATCH v2] keepalive: fix keepalive state alignment

2018-01-23 Thread Andriy Berestovskyy
The __rte_cache_aligned was applied to the whole array, not the array elements. This leads to a false sharing between the monitored cores. Fixes: e70a61ad50ab ("keepalive: export states") Cc: remy.hor...@intel.com Signed-off-by: Andriy Berestovskyy --- Notes (changelog): V2 Changes: - f