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 1D993A04B5; Thu, 29 Oct 2020 09:32:04 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 07A25BE4F; Thu, 29 Oct 2020 09:32:03 +0100 (CET) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 14325BE49 for ; Thu, 29 Oct 2020 09:32:00 +0100 (CET) IronPort-SDR: Q+cqMn5G9QsGM7IwnBMIL46S/lw8WNUlxgQ4UYX1EIeUQE0ZCj5XaCHNChp1NtZyURM9qdPE3h aFqityxaVB0g== X-IronPort-AV: E=McAfee;i="6000,8403,9788"; a="168528145" X-IronPort-AV: E=Sophos;i="5.77,429,1596524400"; d="scan'208";a="168528145" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga007.jf.intel.com ([10.7.209.58]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 29 Oct 2020 01:31:59 -0700 IronPort-SDR: lCGODeJDvfn02C1WvT/5e/grcq+LRXK04e0Ryn3wf6XgU4msGtzBRcgg2cOJLpGV/2vbAGxEHq Vdt6cZT0cVVg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,429,1596524400"; d="scan'208";a="362033497" Received: from fmsmsx606.amr.corp.intel.com ([10.18.126.86]) by orsmga007.jf.intel.com with ESMTP; 29 Oct 2020 01:31:58 -0700 Received: from shsmsx603.ccr.corp.intel.com (10.109.6.143) by fmsmsx606.amr.corp.intel.com (10.18.126.86) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.1713.5; Thu, 29 Oct 2020 01:31:57 -0700 Received: from shsmsx601.ccr.corp.intel.com (10.109.6.141) by SHSMSX603.ccr.corp.intel.com (10.109.6.143) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.1713.5; Thu, 29 Oct 2020 16:31:55 +0800 Received: from shsmsx601.ccr.corp.intel.com ([10.109.6.141]) by SHSMSX601.ccr.corp.intel.com ([10.109.6.141]) with mapi id 15.01.1713.004; Thu, 29 Oct 2020 16:31:55 +0800 From: "Zhang, Qi Z" To: "Yang, Qiming" CC: "dev@dpdk.org" Thread-Topic: [PATCH v3 00/21] ice: update base code Thread-Index: AQHWrNkkD4153i9460aICVIXawl6FamtuOYAgACJQ0A= Date: Thu, 29 Oct 2020 08:31:55 +0000 Message-ID: References: <20201028032320.1755208-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-reaction: no-action dlp-version: 11.5.1.3 dlp-product: dlpe-windows x-originating-ip: [10.108.32.68] Content-Type: text/plain; charset="iso-2022-jp" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v3 00/21] ice: update base code 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, October 29, 2020 4:20 PM > To: Zhang, Qi Z > Cc: dev@dpdk.org > Subject: RE: [PATCH v3 00/21] ice: update base code >=20 > > -----Original Message----- > > From: Zhang, Qi Z > > Sent: 2020=1B$BG/=1B(B10=1B$B7n=1B(B28=1B$BF|=1B(B 11:23 > > To: Yang, Qiming > > Cc: dev@dpdk.org; Zhang, Qi Z > > Subject: [PATCH v3 00/21] ice: update base code > > > > main change: > > 1. Refactor the RSS configure API. > > 2. Add global LUT support . > > 3. copule fix and code clean > > > > v3: > > - fix gtpu rss bug in patch 19/22 > > > > v2: > > - fix missing code in patch 19/21. > > > > *** BLURB HERE *** > > > > Qi Zhang (21): > > net/ice/base: add tunnel support for FDIR > > net/ice/base: add NVM Write Response flags > > net/ice/base: modify ptype bitmap for outer MAC > > net/ice/base: rename ptype bitmap > > net/ice/base: move sched function prototypes > > net/ice/base: read security revision > > net/ice/base: add functions to allocate and free a RSS global LUT > > net/ice/base: add more capability to admin queue > > net/ice/base: update to use package info from ice segment > > net/ice/base: use malloc instead of calloc > > net/ice/base: add support for class 5+ modules > > net/ice/base: return error directly > > net/ice/base: implement shared rate limiter > > net/ice/base: recognize 860 as iSCSI port in CEE mode > > net/ice/base: fix parameter name in comment > > net/ice/base: support extended GPIO access > > net/ice/base: remove duplicated AQ command flag setting > > net/ice/base: introduce and use FLEX_ARRAY_SIZE where possible > > net/ice/base: refactor RSS configure API > > net/ice/base: add support for get/set RSS LUT to specify global LUT > > net/ice/base: update version > > > > drivers/net/ice/base/README | 2 +- > > drivers/net/ice/base/ice_adminq_cmd.h | 35 +- > > drivers/net/ice/base/ice_common.c | 58 ++- > > drivers/net/ice/base/ice_common.h | 13 +- > > drivers/net/ice/base/ice_dcb.c | 38 +- > > drivers/net/ice/base/ice_fdir.c | 8 + > > drivers/net/ice/base/ice_fdir.h | 9 + > > drivers/net/ice/base/ice_flex_pipe.c | 46 +-- > > drivers/net/ice/base/ice_flex_type.h | 8 + > > drivers/net/ice/base/ice_flow.c | 265 ++++++++------ > > drivers/net/ice/base/ice_flow.h | 34 +- > > drivers/net/ice/base/ice_nvm.c | 174 +++++++++ > > drivers/net/ice/base/ice_sched.c | 493 +++++++++++++++++--------- > > drivers/net/ice/base/ice_sched.h | 29 +- > > drivers/net/ice/base/ice_switch.c | 68 +++- > > drivers/net/ice/base/ice_switch.h | 2 + > > drivers/net/ice/base/ice_type.h | 64 +++- > > drivers/net/ice/ice_ethdev.c | 346 +++++++++--------- > > drivers/net/ice/ice_ethdev.h | 18 +- > > drivers/net/ice/ice_hash.c | 14 +- > > 20 files changed, 1138 insertions(+), 586 deletions(-) > > > > -- > > 2.25.4 >=20 > Acked-by: Qiming Yang Applied to dpdk-next-net-intel. Thanks Qi