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 D6599A04DD; Thu, 2 Jan 2020 07:00:10 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 53A131BFA2; Thu, 2 Jan 2020 07:00:10 +0100 (CET) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id F0D2B1BE3D for ; Thu, 2 Jan 2020 07:00:08 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 01 Jan 2020 22:00:08 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.69,385,1571727600"; d="scan'208";a="215914678" Received: from fmsmsx106.amr.corp.intel.com ([10.18.124.204]) by fmsmga007.fm.intel.com with ESMTP; 01 Jan 2020 22:00:07 -0800 Received: from fmsmsx111.amr.corp.intel.com (10.18.116.5) by FMSMSX106.amr.corp.intel.com (10.18.124.204) with Microsoft SMTP Server (TLS) id 14.3.439.0; Wed, 1 Jan 2020 22:00:07 -0800 Received: from shsmsx152.ccr.corp.intel.com (10.239.6.52) by fmsmsx111.amr.corp.intel.com (10.18.116.5) with Microsoft SMTP Server (TLS) id 14.3.439.0; Wed, 1 Jan 2020 22:00:07 -0800 Received: from shsmsx101.ccr.corp.intel.com ([169.254.1.30]) by SHSMSX152.ccr.corp.intel.com ([169.254.6.203]) with mapi id 14.03.0439.000; Thu, 2 Jan 2020 14:00:05 +0800 From: "Yang, Qiming" To: "Zhang, Qi Z" CC: "Ye, Xiaolong" , "dev@dpdk.org" Thread-Topic: [PATCH 00/12] base code update Thread-Index: AQHVq2iK2zsJl80riEW5/vLFQov9OKfXDKqg Date: Thu, 2 Jan 2020 06:00:05 +0000 Message-ID: References: <20191205123847.39579-1-qi.z.zhang@intel.com> In-Reply-To: <20191205123847.39579-1-qi.z.zhang@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiZDc0ZTY5MjctMGUwMC00MzIwLTlkNTAtOTMwNmQ0NWQyN2QxIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjEwLjE4MDQuNDkiLCJUcnVzdGVkTGFiZWxIYXNoIjoiclpZM1ozbDdFNEJYeGZcLzNaRkZYUkhQc3g1ZGhGTnlFVmFhTDhQQmxjU2lwcnR6NENwbG9QU3JiMWdpbHZuVWYifQ== x-ctpclassification: CTP_NT 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/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" > -----Original Message----- > From: Zhang, Qi Z > Sent: Thursday, December 5, 2019 8:39 PM > To: Yang, Qiming > Cc: Ye, Xiaolong ; dev@dpdk.org; Zhang, Qi Z > > Subject: [PATCH 00/12] base code update >=20 > 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. >=20 > 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 >=20 > drivers/net/ice/base/ice_adminq_cmd.h | 1 + > drivers/net/ice/base/ice_common.c | 26 +- > 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, 534 insertions(+), 208 deletions(-) >=20 > -- > 2.13.6 Can delete the unnecessary space line in patch 03/12. Acked-by: Qiming Yang