From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 1B1E42BFF for ; Thu, 15 Dec 2016 17:54:12 +0100 (CET) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga101.fm.intel.com with ESMTP; 15 Dec 2016 08:54:11 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,352,1477983600"; d="scan'208";a="912588529" Received: from irsmsx154.ger.corp.intel.com ([163.33.192.96]) by orsmga003.jf.intel.com with ESMTP; 15 Dec 2016 08:54:10 -0800 Received: from irsmsx102.ger.corp.intel.com ([169.254.2.79]) by IRSMSX154.ger.corp.intel.com ([169.254.12.128]) with mapi id 14.03.0248.002; Thu, 15 Dec 2016 16:54:09 +0000 From: "Van Haaren, Harry" To: Jerin Jacob CC: "dev@dpdk.org" , "thomas.monjalon@6wind.com" , "Richardson, Bruce" , "hemant.agrawal@nxp.com" , "Eads, Gage" Thread-Topic: [dpdk-dev] [PATCH v2 1/6] eventdev: introduce event driven programming model Thread-Index: AQHST3Q6miHoZHXUrUSff5InwKg5VKD8TjTAgAD2dQCAAJkcYIAJmy0AgAHKf9A= Date: Thu, 15 Dec 2016 16:54:08 +0000 Message-ID: References: <1479447902-3700-2-git-send-email-jerin.jacob@caviumnetworks.com> <1480996340-29871-1-git-send-email-jerin.jacob@caviumnetworks.com> <1480996340-29871-2-git-send-email-jerin.jacob@caviumnetworks.com> <20161208012413.GA22031@svelivela-lt.caveonetworks.com> <20161214131356.GA4224@localhost.localdomain> In-Reply-To: <20161214131356.GA4224@localhost.localdomain> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiZjcwOGQyMDQtYTRiMy00ZjcwLWE5MDctZDczOGE4YTgyZjdlIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6Imh3QXh1MW5BNkR1Z0xmYStjMEFFUVFMaFwvd29FcUFpTmhMRVRuYllxMEFNPSJ9 x-ctpclassification: CTP_IC x-originating-ip: [163.33.239.182] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v2 1/6] eventdev: introduce event driven programming model 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: Thu, 15 Dec 2016 16:54:13 -0000 > From: Jerin Jacob [mailto:jerin.jacob@caviumnetworks.com] > Sent: Wednesday, December 14, 2016 1:14 PM > To: Van Haaren, Harry > So incorporating my latest suggestions on moving sub_event_type field aro= und: >=20 > union { > uint64_t event; > struct { > uint32_t flow_id: 20; > uint32_t sub_event_type : 8; > uint32_t event_type : 4; >=20 > uint8_t operation : 2; /* new fwd drop */ > uint8_t rsvd: 4; /* for future additions */ > uint8_t sched_type : 2; >=20 > uint8_t queue_id; > uint8_t priority; > uint8_t impl_opaque; > }; > }; Thanks, looks good to me!