Re: [dpdk-dev] [PATCH 5/7] stack: add non-blocking stack implementation

2019-02-25 Thread Olivier Matz
On Fri, Feb 22, 2019 at 10:06:53AM -0600, Gage Eads wrote: > This commit adds support for a non-blocking (linked list based) stack to > the stack API. This behavior is selected through a new rte_stack_create() > flag, STACK_F_NB. > > The stack consists of a linked list of elements, each containing

[dpdk-dev] [PATCH 5/7] stack: add non-blocking stack implementation

2019-02-22 Thread Gage Eads
This commit adds support for a non-blocking (linked list based) stack to the stack API. This behavior is selected through a new rte_stack_create() flag, STACK_F_NB. The stack consists of a linked list of elements, each containing a data pointer and a next pointer, and an atomic stack depth counter