Re: [dpdk-dev] [PATCH v6 6/8] stack: add C11 atomic implementation

2019-04-02 Thread Honnappa Nagarahalli
> Subject: [PATCH v6 6/8] stack: add C11 atomic implementation > > This commit adds an implementation of the lock-free stack push, pop, and > length functions that use __atomic builtins, for systems that benefit from the > finer-grained memory ordering control. > > Signed-off-by: Gage Eads > Rev

[dpdk-dev] [PATCH v6 6/8] stack: add C11 atomic implementation

2019-04-01 Thread Gage Eads
This commit adds an implementation of the lock-free stack push, pop, and length functions that use __atomic builtins, for systems that benefit from the finer-grained memory ordering control. Signed-off-by: Gage Eads Reviewed-by: Olivier Matz --- lib/librte_stack/Makefile | 3 +- lib