Re: [PATCH v3 2/7] stack: replace rte atomics with GCC builtin atomics

2023-05-24 Thread David Marchand
Hello Olivier, Review please. On Thu, Mar 23, 2023 at 11:54 PM Tyler Retzlaff wrote: > > Replace the use of rte_atomic.h types and functions, instead use GCC > supplied C++11 memory model builtins. > > Signed-off-by: Tyler Retzlaff > --- > lib/stack/rte_stack_lf_generic.h | 16 +---

[PATCH v3 2/7] stack: replace rte atomics with GCC builtin atomics

2023-03-23 Thread Tyler Retzlaff
Replace the use of rte_atomic.h types and functions, instead use GCC supplied C++11 memory model builtins. Signed-off-by: Tyler Retzlaff --- lib/stack/rte_stack_lf_generic.h | 16 +--- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/lib/stack/rte_stack_lf_generic.h b/li