Re: [dpdk-dev] [PATCH v11 3/3] eal/stack: enable lock-free stack for aarch64

2019-10-21 Thread David Marchand
On Fri, Oct 18, 2019 at 1:22 PM Phil Yang wrote: > > Enable both c11 atomic and non c11 atomic lock-free stack for aarch64. > > Introduced a new header to reduce the ifdef clutter across generic and c11 > files. The rte_stack_lf_stubs.h contains stub implementations of > __rte_stack_lf_count, __rt

[dpdk-dev] [PATCH v11 3/3] eal/stack: enable lock-free stack for aarch64

2019-10-18 Thread Phil Yang
Enable both c11 atomic and non c11 atomic lock-free stack for aarch64. Introduced a new header to reduce the ifdef clutter across generic and c11 files. The rte_stack_lf_stubs.h contains stub implementations of __rte_stack_lf_count, __rte_stack_lf_push_elems and __rte_stack_lf_pop_elems. Suggeste