From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 5AB6D2BCE for ; Fri, 4 Mar 2016 16:11:05 +0100 (CET) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga103.fm.intel.com with ESMTP; 04 Mar 2016 07:11:04 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.22,536,1449561600"; d="scan'208";a="758132332" Received: from irsmsx153.ger.corp.intel.com ([163.33.192.75]) by orsmga003.jf.intel.com with ESMTP; 04 Mar 2016 07:11:03 -0800 Received: from irsmsx155.ger.corp.intel.com (163.33.192.3) by IRSMSX153.ger.corp.intel.com (163.33.192.75) with Microsoft SMTP Server (TLS) id 14.3.248.2; Fri, 4 Mar 2016 15:11:02 +0000 Received: from irsmsx101.ger.corp.intel.com ([169.254.1.157]) by irsmsx155.ger.corp.intel.com ([169.254.14.201]) with mapi id 14.03.0248.002; Fri, 4 Mar 2016 15:11:01 +0000 From: "Kobylinski, MichalX" To: Jerin Jacob , Thomas Monjalon Thread-Topic: [dpdk-dev] [PATCH] lpm: merge tbl24 and tbl8 structures Thread-Index: AQHRJsQ5kL8Jz04AxU6Vz5w8ozmQ459J/uCAgAABpwCAAACHoA== Date: Fri, 4 Mar 2016 15:11:01 +0000 Message-ID: <987EE72691933347B9F0B5C19E71B5BB1F042C6E@IRSMSX101.ger.corp.intel.com> References: <1448375156-26654-1-git-send-email-bruce.richardson@intel.com> <1448375156-26654-2-git-send-email-bruce.richardson@intel.com> <7382756.lYQvSGsykG@xps13> <20160304150337.GA2125@localhost.localdomain> In-Reply-To: <20160304150337.GA2125@localhost.localdomain> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [163.33.239.181] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Cc: "dev@dpdk.org" Subject: Re: [dpdk-dev] [PATCH] lpm: merge tbl24 and tbl8 structures X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Mar 2016 15:11:06 -0000 > -----Original Message----- > From: Jerin Jacob [mailto:jerin.jacob@caviumnetworks.com] > Sent: Friday, March 4, 2016 4:04 PM > To: Thomas Monjalon > Cc: Richardson, Bruce ; dev@dpdk.org; > Kobylinski, MichalX > Subject: Re: [dpdk-dev] [PATCH] lpm: merge tbl24 and tbl8 structures > Importance: High >=20 > On Fri, Mar 04, 2016 at 03:57:43PM +0100, Thomas Monjalon wrote: > > 2015-11-24 14:25, Bruce Richardson: > > > The tbl8 and tbl24 structures were essentially identical except for > > > slightly different names for one or two fields. Merge these two > > > structures into a single structure definition. > > > > > > Two fields have been renamed as part of this change: the "ext_entry" > > > field in the tbl24 has been renamed to "valid_group" to match the > > > tbl8 value to make the merge easier, and the "tbl8_gindex" field has > > > been renamed to "group_idx". The "valid_group" field now serves two > > > purposes: in a tbl8 it indicates if the group, i.e. the tbl8, is > > > valid, and in a tbl24, it indicates if the "group_idx" is valid, > > > i.e. whether the value is a next_hop or a tbl8 index. [The name > > > "group_idx" was used to make this latter link between the fields > > > clearer] > > > > > > Suggested-by: Vladimir Medvedkin > > > Signed-off-by: Bruce Richardson > > > > This patch was forgotten. > > Michal, Jerin, maybe you'll have to rebase on top of it. ok, I'll rebase on top of it. >=20 > I wait for Michal to send the next version. I will the v5 rebased on Mich= al patch. >=20 > Jerin >=20 > > > > Applied, thanks