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

2019-02-27 Thread Eads, Gage
> -Original Message- > From: Olivier Matz [mailto:olivier.m...@6wind.com] > Sent: Monday, February 25, 2019 4:43 AM > To: Eads, Gage > Cc: dev@dpdk.org; arybche...@solarflare.com; Richardson, Bruce > ; Ananyev, Konstantin > ; gavin...@arm.com; > honnappa.nagaraha...@arm.com; n...@arm.co

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

2019-02-25 Thread Olivier Matz
Hi Gage, Please find few comments below. On Fri, Feb 22, 2019 at 10:06:49AM -0600, Gage Eads wrote: > 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 pus

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

2019-02-22 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