From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jerin Jacob Subject: Re: [PATCH 3/5] eventdev: add ring structure for events Date: Mon, 12 Jun 2017 10:45:47 +0530 Message-ID: <20170612051546.GA9948@jerin> References: <20170607133620.275801-1-bruce.richardson@intel.com> <20170607133620.275801-4-bruce.richardson@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: dev@dpdk.org, olivier.matz@6wind.com To: Bruce Richardson Return-path: Received: from NAM03-DM3-obe.outbound.protection.outlook.com (mail-dm3nam03on0041.outbound.protection.outlook.com [104.47.41.41]) by dpdk.org (Postfix) with ESMTP id 6E2733B5 for ; Mon, 12 Jun 2017 07:16:09 +0200 (CEST) Content-Disposition: inline In-Reply-To: <20170607133620.275801-4-bruce.richardson@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" -----Original Message----- > Date: Wed, 7 Jun 2017 14:36:18 +0100 > From: Bruce Richardson > To: dev@dpdk.org > CC: olivier.matz@6wind.com, jerin.jacob@caviumnetworks.com, Bruce > Richardson > Subject: [PATCH 3/5] eventdev: add ring structure for events > X-Mailer: git-send-email 2.9.4 > > Add in a new rte_event_ring structure type and functions to allow events to > be passed core to core. This is needed because the standard rte_ring type > only works on pointers, while for events, we want to copy the entire, 16B > events themselves - not just pointers to them. The code makes extensive use > of the functions already defined in rte_ring.h > > Signed-off-by: Bruce Richardson Thomas, Should this series applied through dpdk/master or dpdk-next-eventdev/master? Bruce, __rte_always_inline macro is now part of master. Good to replace with force_inline.