From mboxrd@z Thu Jan 1 00:00:00 1970 From: Honnappa Nagarahalli Subject: Re: [PATCH v6 1/8] stack: introduce rte stack library Date: Tue, 2 Apr 2019 11:14:15 +0000 Message-ID: References: <20190401001238.17625-1-gage.eads@intel.com> <20190401211429.20282-1-gage.eads@intel.com> <20190401211429.20282-2-gage.eads@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Cc: "olivier.matz@6wind.com" , "arybchenko@solarflare.com" , "bruce.richardson@intel.com" , "konstantin.ananyev@intel.com" , "Gavin Hu (Arm Technology China)" , nd , "thomas@monjalon.net" , nd To: Gage Eads , "dev@dpdk.org" Return-path: Received: from EUR03-AM5-obe.outbound.protection.outlook.com (mail-eopbgr30075.outbound.protection.outlook.com [40.107.3.75]) by dpdk.org (Postfix) with ESMTP id D36AEA3 for ; Tue, 2 Apr 2019 13:14:16 +0200 (CEST) In-Reply-To: <20190401211429.20282-2-gage.eads@intel.com> Content-Language: en-US List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" > Subject: [PATCH v6 1/8] stack: introduce rte stack library >=20 > The rte_stack library provides an API for configuration and use of a boun= ded > stack of pointers. Push and pop operations are MT-safe, allowing concurre= nt > access, and the interface supports pushing and popping multiple pointers = at a > time. >=20 > The library's interface is modeled after another DPDK data structure, rte= _ring, > and its lock-based implementation is derived from the stack mempool > handler. An upcoming commit will migrate the stack mempool handler to > rte_stack. >=20 > Signed-off-by: Gage Eads > Reviewed-by: Olivier Matz > --- Reviewed-by: Honnappa Nagarahalli