From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 3C5C92BB4 for ; Mon, 3 Jul 2017 11:52:56 +0200 (CEST) Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 03 Jul 2017 02:52:56 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.40,302,1496127600"; d="scan'208";a="281529196" Received: from irsmsx110.ger.corp.intel.com ([163.33.3.25]) by fmsmga004.fm.intel.com with ESMTP; 03 Jul 2017 02:52:55 -0700 Received: from irsmsx102.ger.corp.intel.com ([169.254.2.211]) by irsmsx110.ger.corp.intel.com ([169.254.15.126]) with mapi id 14.03.0319.002; Mon, 3 Jul 2017 10:52:54 +0100 From: "Van Haaren, Harry" To: "Richardson, Bruce" , "dev@dpdk.org" CC: "olivier.matz@6wind.com" , "jerin.jacob@caviumnetworks.com" , "Richardson, Bruce" Thread-Topic: [dpdk-dev] [PATCH v2 3/5] eventdev: add ring structure for events Thread-Index: AQHS8bOpRCSnlNQ6NkekUMvok2MtzaJB4L5g Date: Mon, 3 Jul 2017 09:52:54 +0000 Message-ID: References: <20170607133620.275801-1-bruce.richardson@intel.com> <20170630150621.156365-1-bruce.richardson@intel.com> <20170630150621.156365-4-bruce.richardson@intel.com> In-Reply-To: <20170630150621.156365-4-bruce.richardson@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiNzEyYmFkZGUtN2ZjNS00MzYxLWJiZDctYzliNmY1YTRmODNkIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE2LjUuOS4zIiwiVHJ1c3RlZExhYmVsSGFzaCI6IjRrbW9EdEdNV200WHRJUDRCVUZJQ2lmSXgyT2NEZitSWm1qTFlvVDk0bk09In0= x-ctpclassification: CTP_IC dlp-product: dlpe-windows dlp-version: 10.0.102.7 dlp-reaction: no-action x-originating-ip: [163.33.239.181] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v2 3/5] eventdev: add ring structure for events X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Jul 2017 09:52:58 -0000 > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Bruce Richardson > Sent: Friday, June 30, 2017 4:06 PM > To: dev@dpdk.org > Cc: olivier.matz@6wind.com; jerin.jacob@caviumnetworks.com; Richardson, B= ruce > > Subject: [dpdk-dev] [PATCH v2 3/5] eventdev: add ring structure for event= s >=20 > 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 u= se > of the functions already defined in rte_ring.h >=20 > Signed-off-by: Bruce Richardson Acked-by: Harry van Haaren