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 F3596A04F3; Thu, 9 Jan 2020 05:44:19 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 8D2591D5FD; Thu, 9 Jan 2020 05:44:18 +0100 (CET) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 836651C2B5 for ; Thu, 9 Jan 2020 05:44:17 +0100 (CET) X-Amp-Result: UNKNOWN X-Amp-Original-Verdict: FILE UNKNOWN X-Amp-File-Uploaded: False Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 08 Jan 2020 20:44:16 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.69,412,1571727600"; d="scan'208";a="272013812" Received: from yexl-server.sh.intel.com (HELO localhost) ([10.67.117.17]) by FMSMGA003.fm.intel.com with ESMTP; 08 Jan 2020 20:44:15 -0800 Date: Thu, 9 Jan 2020 12:38:30 +0800 From: Ye Xiaolong To: Qi Zhang Cc: qiming.yang@intel.com, dev@dpdk.org Message-ID: <20200109043830.GA99540@intel.com> References: <20191205123847.39579-1-qi.z.zhang@intel.com> <20200106033851.43978-1-qi.z.zhang@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200106033851.43978-1-qi.z.zhang@intel.com> User-Agent: Mutt/1.9.4 (2018-02-28) Subject: Re: [dpdk-dev] [PATCH v2 00/12] base code update 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 01/06, Qi Zhang wrote: >Main changes: >1. add support for MAC rules on specific port >2. support MAC/VLAN with TCP/UDP in switch rule >3. support 1/10G device >4. couple bug fix and code clean. > >v2: >- rebase to next-net-intel. >- remove unnecessary empty line in patch 03/12 > >Qi Zhang (12): > net/ice/base: whitelist register for NVM access > net/ice/base: support MAC/VLAN with TCP/UDP in switch > net/ice/base: do not wait for PE unit to load > net/ice/base: cleanup format of static const declarations > net/ice/base: flexbytes should match on header data > net/ice/base: enable clearing of the HW tables > net/ice/base: fix loop limit > net/ice/base: increase PF reset wait timeout > net/ice/base: change fdir desc preparation > net/ice/base: support add MAC rules on specific port > net/ice: support 1/10G device IDs > net/ice/base: minor code clean > > drivers/net/ice/base/ice_adminq_cmd.h | 1 + > drivers/net/ice/base/ice_common.c | 25 +- > drivers/net/ice/base/ice_devids.h | 4 + > drivers/net/ice/base/ice_fdir.c | 92 +++--- > drivers/net/ice/base/ice_flex_pipe.c | 63 ++++- > drivers/net/ice/base/ice_flex_pipe.h | 1 + > drivers/net/ice/base/ice_flow.c | 17 +- > drivers/net/ice/base/ice_flow.h | 2 +- > drivers/net/ice/base/ice_nvm.c | 10 +- > drivers/net/ice/base/ice_switch.c | 517 +++++++++++++++++++++++++--------- > drivers/net/ice/base/ice_switch.h | 3 +- > drivers/net/ice/base/ice_type.h | 4 - > drivers/net/ice/ice_ethdev.c | 2 + > 13 files changed, 533 insertions(+), 208 deletions(-) > >-- >2.13.6 > Applied to dpdk-next-net-intel, Thanks.