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 73CECA0564; Tue, 24 Mar 2020 07:42:42 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 0E4F71C07E; Tue, 24 Mar 2020 07:42:41 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id DFC391C07D for ; Tue, 24 Mar 2020 07:42:38 +0100 (CET) IronPort-SDR: xvBrj0SrVkIpgFkA3xsXODryIj2qHGR9qR2/NuLfcrdF2yVZEXzmjsM28l8jLoMoPYUobVTeMp bRlp5Of6Xa9g== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 Mar 2020 23:42:37 -0700 IronPort-SDR: kRy4k8iKXVXphizubb/LyauzjPoSpZwfEzKrx3Z7ShR/BdJGvCsZCnegZ5CYiVucn4dfL5Xy2K GnCOG2xNqbyQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.72,299,1580803200"; d="scan'208";a="249891423" Received: from yexl-server.sh.intel.com (HELO localhost) ([10.67.117.17]) by orsmga006.jf.intel.com with ESMTP; 23 Mar 2020 23:42:36 -0700 Date: Tue, 24 Mar 2020 14:39:30 +0800 From: Ye Xiaolong To: "Yang, Qiming" Cc: "Zhang, Qi Z" , "dev@dpdk.org" Message-ID: <20200324063930.GH51165@intel.com> References: <20200309114357.31800-1-qi.z.zhang@intel.com> <20200323071759.13075-1-qi.z.zhang@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.9.4 (2018-02-28) Subject: Re: [dpdk-dev] [PATCH v2 00/36] update ice 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" On 03/24, Yang, Qiming wrote: > > >> -----Original Message----- >> From: Zhang, Qi Z >> Sent: Monday, March 23, 2020 15:17 >> To: Yang, Qiming >> Cc: dev@dpdk.org; Ye, Xiaolong ; Zhang, Qi Z >> >> Subject: [PATCH v2 00/36] update ice base code >> >> Main changes: >> >> 1) Support GTPU uplink and downlink >> 2) add new ACL module >> 3) couple fixes and code clean >> >> v2: >> - add fixline in patch 5, and move unrelated chanages. >> - add more fixes and code clean >> - add IPv4 proto support in switch rule >> - add IPv6 dummy packet support >> - add tunnel refreence count. >> - check DDP package compatibility >> >> Qi Zhang (36): >> net/ice/base: fix uninitialized stack variables >> net/ice/base: add and update E822 device IDs >> net/ice/base: fix removing MAC rule >> net/ice/base: read PSM clock frequency from register >> net/ice/base: allow VLAN and ethertype filter for port >> net/ice/base: replace u16 with enum >> net/ice/base: use struct size helper >> net/ice/base: use descriptive vairiable name than type >> net/ice/base: refactor a function >> net/ice/base: add NVM netlist macros >> net/ice/base: minor fixes >> net/ice/base: support GTPU uplink and downlink >> net/ice/base: add link default override support >> net/ice/base: add dedicate MAC type for E810 >> net/ice/base: capitalize abbreviations >> net/ice/base: add PHY number definition values >> net/ice/base: add shared driver parameter command >> net/ice/base: add AN masks to Get PHY Caps >> net/ice/base: xtract logic of flat NVM read to function >> net/ice/base: add macro specifying max NVM offset >> net/ice/base: implement new sr read functions >> net/ice/base: couple casting issue fixes >> net/ice/base: support PHY persistent feature >> net/ice/base: store NVM version info in extracted format >> net/ice/base: add ACL module >> net/ice/base: update copyright date >> net/ice/base: add the hook to send AdminQ command >> net/ice/base: don't access some hardware registers in DCF >> net/ice/base: move functions from common to NVM module >> net/ice/base: discover and store size of available flash >> net/ice/base: check DDP package compatibility >> net/ice/base: fix MAC write command >> net/ice/base: misc cleanups for Flow Director >> net/ice/base: add check to ipv4 next protocol >> net/ice/base: add reference count to tunnels >> net/ice/base: add pppoe ipv6 dummy packet >> >> drivers/net/ice/Makefile | 2 + >> drivers/net/ice/base/ice_acl.c | 629 ++++++++++++++++ >> drivers/net/ice/base/ice_acl.h | 206 +++++ >> drivers/net/ice/base/ice_acl_ctrl.c | 1185 >> +++++++++++++++++++++++++++++ >> drivers/net/ice/base/ice_adminq_cmd.h | 542 +++++++++++++- >> drivers/net/ice/base/ice_alloc.h | 2 +- >> drivers/net/ice/base/ice_bitops.h | 2 +- >> drivers/net/ice/base/ice_common.c | 408 ++++++---- >> drivers/net/ice/base/ice_common.h | 26 +- >> drivers/net/ice/base/ice_controlq.c | 20 +- >> drivers/net/ice/base/ice_controlq.h | 2 +- >> drivers/net/ice/base/ice_dcb.c | 10 +- >> drivers/net/ice/base/ice_dcb.h | 2 +- >> drivers/net/ice/base/ice_devids.h | 30 +- >> drivers/net/ice/base/ice_fdir.c | 64 +- >> drivers/net/ice/base/ice_fdir.h | 7 +- >> drivers/net/ice/base/ice_flex_pipe.c | 450 +++++++---- >> drivers/net/ice/base/ice_flex_pipe.h | 6 +- >> drivers/net/ice/base/ice_flex_type.h | 17 +- >> drivers/net/ice/base/ice_flow.c | 1209 >> +++++++++++++++++++++++++++++- >> drivers/net/ice/base/ice_flow.h | 14 +- >> drivers/net/ice/base/ice_hw_autogen.h | 2 +- >> drivers/net/ice/base/ice_lan_tx_rx.h | 2 +- >> drivers/net/ice/base/ice_nvm.c | 398 +++++++--- >> drivers/net/ice/base/ice_nvm.h | 8 +- >> drivers/net/ice/base/ice_protocol_type.h | 2 +- >> drivers/net/ice/base/ice_sbq_cmd.h | 2 +- >> drivers/net/ice/base/ice_sched.c | 63 +- >> drivers/net/ice/base/ice_sched.h | 9 +- >> drivers/net/ice/base/ice_status.h | 3 +- >> drivers/net/ice/base/ice_switch.c | 331 +++++--- >> drivers/net/ice/base/ice_switch.h | 2 +- >> drivers/net/ice/base/ice_type.h | 97 ++- >> drivers/net/ice/base/meson.build | 2 + >> drivers/net/ice/ice_ethdev.c | 28 +- >> drivers/net/ice/ice_fdir_filter.c | 4 +- >> 36 files changed, 5081 insertions(+), 705 deletions(-) create mode 100644 >> drivers/net/ice/base/ice_acl.c create mode 100644 >> drivers/net/ice/base/ice_acl.h create mode 100644 >> drivers/net/ice/base/ice_acl_ctrl.c >> >> -- >> 2.13.6 > > Series Acked-by: Qiming Yang Applied to dpdk-next-net-intel, Thanks.