Re: [dpdk-dev] [PATCH v6 1/8] stack: introduce rte stack library

2019-04-03 Thread Thomas Monjalon
03/04/2019 19:13, Eads, Gage: > > 02/04/2019 13:14, Honnappa Nagarahalli: > > > > Subject: [PATCH v6 1/8] stack: introduce rte stack library > > > > > > > > The rte_stack library provides an API for configuration and use of a > > > > bounded stack of pointers. Push and pop operations are MT-safe, >

Re: [dpdk-dev] [PATCH v6 1/8] stack: introduce rte stack library

2019-04-03 Thread Eads, Gage
> 02/04/2019 13:14, Honnappa Nagarahalli: > > > Subject: [PATCH v6 1/8] stack: introduce rte stack library > > > > > > The rte_stack library provides an API for configuration and use of a > > > bounded stack of pointers. Push and pop operations are MT-safe, > > > allowing concurrent access, and the

Re: [dpdk-dev] [PATCH v6 1/8] stack: introduce rte stack library

2019-04-03 Thread Thomas Monjalon
02/04/2019 13:14, Honnappa Nagarahalli: > > Subject: [PATCH v6 1/8] stack: introduce rte stack library > > > > The rte_stack library provides an API for configuration and use of a bounded > > stack of pointers. Push and pop operations are MT-safe, allowing concurrent > > access, and the interface

Re: [dpdk-dev] [PATCH v6 1/8] stack: introduce rte stack library

2019-04-02 Thread Honnappa Nagarahalli
> Subject: [PATCH v6 1/8] stack: introduce rte stack library > > The rte_stack library provides an API for configuration and use of a bounded > stack of pointers. Push and pop operations are MT-safe, allowing concurrent > access, and the interface supports pushing and popping multiple pointers at

[dpdk-dev] [PATCH v6 1/8] stack: introduce rte stack library

2019-04-01 Thread Gage Eads
The rte_stack library provides an API for configuration and use of a bounded stack of pointers. Push and pop operations are MT-safe, allowing concurrent access, and the interface supports pushing and popping multiple pointers at a time. The library's interface is modeled after another DPDK data st