Re: [dpdk-dev] [PATCH] app/flow-perf: use macro for cache alignment

2020-06-30 Thread Thomas Monjalon
> >The macro __rte_cache_aligned is better suited for aligning a structure on a > >cache line (of any size). > > > >Fixes: 15c431864000 ("app/flow-perf: add packet forwarding support") > > > >Signed-off-by: Thomas Monjalon > > Acked-by: Wisam Jaddo Applied

Re: [dpdk-dev] [PATCH] app/flow-perf: use macro for cache alignment

2020-06-30 Thread Wisam Monther
Hi, >-Original Message- >From: Thomas Monjalon >Sent: Tuesday, June 30, 2020 12:05 AM >To: dev@dpdk.org >Cc: david.march...@redhat.com; Wisam Monther >; Jack Min >Subject: [PATCH] app/flow-perf: use macro for cache alignment > >The macro __rte_cache_aligned is better suited for aligning

[dpdk-dev] [PATCH] app/flow-perf: use macro for cache alignment

2020-06-29 Thread Thomas Monjalon
The macro __rte_cache_aligned is better suited for aligning a structure on a cache line (of any size). Fixes: 15c431864000 ("app/flow-perf: add packet forwarding support") Signed-off-by: Thomas Monjalon --- app/test-flow-perf/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --