Re: [dpdk-dev] [PATCH v7 0/8] Add stack library and new mempool handler

2019-04-03 Thread Eads, Gage
; > honnappa.nagaraha...@arm.com; n...@arm.com > Subject: Re: [dpdk-dev] [PATCH v7 0/8] Add stack library and new mempool > handler > > 03/04/2019 22:09, Gage Eads: > > v7: > > - Add rte_branch_prediction.h include to rte_stack_std.h for unlikely() > > - Add rte_

Re: [dpdk-dev] [PATCH v7 0/8] Add stack library and new mempool handler

2019-04-03 Thread Thomas Monjalon
03/04/2019 22:09, Gage Eads: > v7: > - Add rte_branch_prediction.h include to rte_stack_std.h for unlikely() > - Add rte_compat.h include to rte_stack.h for __rte_experimental There is another error when compiling for Arm: lib/librte_stack/rte_stack.h:76:2: error: implicit declaration of

[dpdk-dev] [PATCH v7 0/8] Add stack library and new mempool handler

2019-04-03 Thread Gage Eads
This patchset introduces a stack library, supporting both lock-based and lock-free stacks, and a lock-free stack mempool handler. The lock-based stack code is derived from the existing stack mempool handler, and that handler is refactored to use the stack library. The lock-free stack mempool hand