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 33A2B7CCF for ; Mon, 4 Sep 2017 19:17:14 +0200 (CEST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 04 Sep 2017 10:17:14 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.41,475,1498546800"; d="scan'208";a="1191423943" Received: from irsmsx152.ger.corp.intel.com ([163.33.192.66]) by fmsmga001.fm.intel.com with ESMTP; 04 Sep 2017 10:17:13 -0700 Received: from irsmsx108.ger.corp.intel.com ([169.254.11.167]) by IRSMSX152.ger.corp.intel.com ([169.254.6.87]) with mapi id 14.03.0319.002; Mon, 4 Sep 2017 18:16:03 +0100 From: "Iremonger, Bernard" To: "Rybalchenko, Kirill" , "dev@dpdk.org" CC: "Rybalchenko, Kirill" , "Chilikin, Andrey" , "Xing, Beilei" , "Wu, Jingjing" Thread-Topic: [dpdk-dev] [PATCH v2 0/4] net/i40e: implement dynamic mapping of flow types to pctypes Thread-Index: AQHTIzNxgyfTWAB9WkK+OKd73tBnRKKk+88w Date: Mon, 4 Sep 2017 17:16:03 +0000 Message-ID: <8CEF83825BEC744B83065625E567D7C24E04465A@IRSMSX108.ger.corp.intel.com> References: <1503569908-104074-1-git-send-email-kirill.rybalchenko@intel.com> <1504278166-32769-1-git-send-email-kirill.rybalchenko@intel.com> In-Reply-To: <1504278166-32769-1-git-send-email-kirill.rybalchenko@intel.com> Accept-Language: en-GB, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiZjJkZWJlNTgtZGQwZS00NTAwLTk2MTEtNTcyMGJiN2IwMGJhIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE2LjUuOS4zIiwiVHJ1c3RlZExhYmVsSGFzaCI6IktkYU1ocWVWNldhSUxyTE4xWHBoSVN5U2Z1SVJsM1dkNVV2VmRnZnQrODA9In0= x-ctpclassification: CTP_IC dlp-product: dlpe-windows dlp-version: 11.0.0.116 dlp-reaction: no-action 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 0/4] net/i40e: implement dynamic mapping of flow types to pctypes 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, 04 Sep 2017 17:17:15 -0000 Hi Kirill, > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Kirill Rybalchenko > Sent: Friday, September 1, 2017 4:03 PM > To: dev@dpdk.org > Cc: Rybalchenko, Kirill ; Chilikin, Andrey > ; Xing, Beilei ; Wu, > Jingjing > Subject: [dpdk-dev] [PATCH v2 0/4] net/i40e: implement dynamic mapping > of flow types to pctypes >=20 > Implement dynamic mapping of software flow types to hardware pctypes. > This allows to map new flow types to pctypes without changing API of the > driver. >=20 > v2: > Remove unnecessary check for new flow types. > Re-arrange patchset to avoid compillation errors. > Remove unnecessary usage of statically defined flow types and pctypes. >=20 > Kirill Rybalchenko (4): > net/i40e: implement dynamic mapping of sw flow types to hw pctypes > net/i40e: add new functions to manipulate with pctype mapping table > app/testpmd: add new commands to manipulate with pctype mapping > ethdev: remove unnecessary check for new flow type >=20 > app/test-pmd/cmdline.c | 311 ++++++++++++++++++++++= ++- > doc/guides/testpmd_app_ug/testpmd_funcs.rst | 21 ++ > drivers/net/i40e/i40e_ethdev.c | 347 +++++++---------------= ------ > drivers/net/i40e/i40e_ethdev.h | 16 +- > drivers/net/i40e/i40e_ethdev_vf.c | 36 +-- > drivers/net/i40e/i40e_fdir.c | 51 ++-- > drivers/net/i40e/i40e_flow.c | 2 +- > drivers/net/i40e/i40e_rxtx.c | 57 +++++ > drivers/net/i40e/i40e_rxtx.h | 1 + > drivers/net/i40e/rte_pmd_i40e.c | 98 ++++++++ > drivers/net/i40e/rte_pmd_i40e.h | 61 +++++ > lib/librte_ether/rte_ethdev.c | 8 - > 12 files changed, 671 insertions(+), 338 deletions(-) >=20 > -- > 2.5.5 The rte_pmd_i40e_version.map file needs to be updated for the new rte_pmd_i= 40e_* API's. Regards, Bernard.