From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 04625A04F5; Fri, 19 Jun 2020 06:25:00 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 6A4AFDE0; Fri, 19 Jun 2020 06:25:00 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id C52B9A3 for ; Fri, 19 Jun 2020 06:24:58 +0200 (CEST) IronPort-SDR: 48g8Sqk7rvfHEkrwnXavaUeqdJiLvjW+yY6tb0d7CvRa6bN79+bTzOJGuZL7SIglrnSJ8y+lQD U3XDYN4Q285g== X-IronPort-AV: E=McAfee;i="6000,8403,9656"; a="131232572" X-IronPort-AV: E=Sophos;i="5.75,253,1589266800"; d="scan'208";a="131232572" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Jun 2020 21:24:57 -0700 IronPort-SDR: iFd5DXFtUHRGTgZGnxqw0Gc26it3M7yO7ptEyAPrCEfCVva/+pYrNicvtz/4lcWosHqiWmoMqw 6GhoQTMA0tFw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,253,1589266800"; d="scan'208";a="274075385" Received: from fmsmsx107.amr.corp.intel.com ([10.18.124.205]) by orsmga003.jf.intel.com with ESMTP; 18 Jun 2020 21:24:57 -0700 Received: from fmsmsx113.amr.corp.intel.com (10.18.116.7) by fmsmsx107.amr.corp.intel.com (10.18.124.205) with Microsoft SMTP Server (TLS) id 14.3.439.0; Thu, 18 Jun 2020 21:24:57 -0700 Received: from shsmsx108.ccr.corp.intel.com (10.239.4.97) by FMSMSX113.amr.corp.intel.com (10.18.116.7) with Microsoft SMTP Server (TLS) id 14.3.439.0; Thu, 18 Jun 2020 21:24:56 -0700 Received: from shsmsx103.ccr.corp.intel.com ([169.254.4.89]) by SHSMSX108.ccr.corp.intel.com ([169.254.8.185]) with mapi id 14.03.0439.000; Fri, 19 Jun 2020 12:24:53 +0800 From: "Zhang, Qi Z" To: "Yang, Qiming" CC: "dev@dpdk.org" , "Ye, Xiaolong" Thread-Topic: [PATCH 00/10] net/ice: base code update for 20.08 batch 2 Thread-Index: AQHWP8vW6QiCIePJ+EukYuE6qd5it6jdZuWAgAH8gnA= Date: Fri, 19 Jun 2020 04:24:53 +0000 Message-ID: <039ED4275CED7440929022BC67E706115483FE61@SHSMSX103.ccr.corp.intel.com> References: <20200611084330.18301-1-qi.z.zhang@intel.com> In-Reply-To: Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-product: dlpe-windows dlp-version: 11.2.0.6 dlp-reaction: no-action x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH 00/10] net/ice: base code update for 20.08 batch 2 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" > -----Original Message----- > From: Yang, Qiming > Sent: Thursday, June 18, 2020 2:04 PM > To: Zhang, Qi Z > Cc: dev@dpdk.org; Ye, Xiaolong > Subject: RE: [PATCH 00/10] net/ice: base code update for 20.08 batch 2 >=20 > > -----Original Message----- > > From: Zhang, Qi Z > > Sent: Thursday, June 11, 2020 16:43 > > To: Yang, Qiming > > Cc: dev@dpdk.org; Ye, Xiaolong ; Zhang, Qi Z > > > > Subject: [PATCH 00/10] net/ice: base code update for 20.08 batch 2 > > > > Main changes: > > 1. support outer IP filter for GTPU (include IPv6) 2. recipe can be > > reused between PFs. > > 3. fix VSI ID mask > > 4. some code refactor and clean > > > > Qi Zhang (10): > > net/ice/base: adjust profile id map locks > > net/ice/base: refactor to avoid need to retry > > net/ice/base: add FD support for outer IP of GTPU > > net/ice/base: add commands for system diagnostic > > net/ice/base: rename misleading variable > > net/ice/base: add FD support for GTPU with outer IPv6 > > net/ice/base: get tunnel type for recipe > > net/ice/base: choose TCP dummy packet by protocol > > net/ice/base: fix the VSI ID mask to be 10 bit > > net/ice/base: replace RSS profile locks > > > > drivers/net/ice/base/ice_adminq_cmd.h | 56 ++++++++++- > > drivers/net/ice/base/ice_common.c | 53 ++++------ > > drivers/net/ice/base/ice_fdir.c | 42 +++++++- > > drivers/net/ice/base/ice_fdir.h | 2 + > > drivers/net/ice/base/ice_flex_pipe.c | 95 +++++++++--------- > > drivers/net/ice/base/ice_flow.c | 29 ++++-- > > drivers/net/ice/base/ice_switch.c | 184 > > +++++++++++++++++++++++++++++++++- > > drivers/net/ice/base/ice_switch.h | 2 + > > drivers/net/ice/base/ice_type.h | 1 + > > 9 files changed, 363 insertions(+), 101 deletions(-) > > > > -- > > 2.13.6 >=20 > Acked-by: Qiming Yang Applied to dpdk-next-net-intel. Thanks Qi