From patchwork Tue Apr 13 05:06:26 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Qi Zhang X-Patchwork-Id: 91177 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 20C79A0524; Tue, 13 Apr 2021 07:03:19 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 09389160A9D; Tue, 13 Apr 2021 07:03:11 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 66253160A92 for ; Tue, 13 Apr 2021 07:03:08 +0200 (CEST) IronPort-SDR: TGYXjmmgAdvcc4a6Loz5uMjD85GFUTQZzYcjNfY2u9bdfFaFtpEYMfjMPqVTHMEE6x0bODrwIB YOHbgEhra64g== X-IronPort-AV: E=McAfee;i="6200,9189,9952"; a="279641901" X-IronPort-AV: E=Sophos;i="5.82,218,1613462400"; d="scan'208";a="279641901" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 12 Apr 2021 22:03:04 -0700 IronPort-SDR: jA1n27T4UBKgVF4vQWJAvdxc0/eBU2ovgH6CFCJ04D+Qvbn0AfEelRsmSCjnV1MqNdf3UPpC2n 0uyWKG5trJDQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.82,218,1613462400"; d="scan'208";a="417704609" Received: from dpdk51.sh.intel.com ([10.67.111.142]) by fmsmga008.fm.intel.com with ESMTP; 12 Apr 2021 22:03:01 -0700 From: Qi Zhang To: qiming.yang@intel.com Cc: dev@dpdk.org, Qi Zhang Date: Tue, 13 Apr 2021 13:06:26 +0800 Message-Id: <20210413050640.2586033-1-qi.z.zhang@intel.com> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20210329141411.2395069-1-qi.z.zhang@intel.com> References: <20210329141411.2395069-1-qi.z.zhang@intel.com> MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH v2 00/14] base code update batch 2 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 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" v2: - Added patch 9/14 - 14/14. Qi Zhang (14): net/ice/base: code cleanup net/ice/base: support removing VSI from flow profile net/ice/base: print link configure error net/ice/base: remove unused ptype field in PTT definition net/ice/base: set MAC type for E823C device net/ice/base: change protocol ID for VLAN in case of DVM net/ice/base: enable I2C read/write commands net/ice/base: add RSS support for PPPoL2TPv2oUDP net/ice/base: add set/get GPIO helper functions net/ice/base: add priority check of matching recipe net/ice/base: add inner VLAN protocol type for QinQ filter net/ice/base: fix QinQ PPPoE dummy pkt selection net/ice/base: add PTYPE values for PPPoL2TPv2oUDP net/ice/base: allow support for GTP-U filter using only inner protocols drivers/net/ice/base/ice_adminq_cmd.h | 40 ++++++ drivers/net/ice/base/ice_common.c | 162 ++++++++++++++++++++++- drivers/net/ice/base/ice_common.h | 14 ++ drivers/net/ice/base/ice_dcb.c | 2 +- drivers/net/ice/base/ice_fdir.c | 2 +- drivers/net/ice/base/ice_flex_pipe.c | 4 +- drivers/net/ice/base/ice_flex_type.h | 31 ++++- drivers/net/ice/base/ice_flow.c | 120 ++++++++++++++--- drivers/net/ice/base/ice_flow.h | 4 + drivers/net/ice/base/ice_lan_tx_rx.h | 10 +- drivers/net/ice/base/ice_protocol_type.h | 4 + drivers/net/ice/base/ice_sched.c | 11 +- drivers/net/ice/base/ice_switch.c | 77 +++++++---- drivers/net/ice/base/ice_switch.h | 1 + drivers/net/ice/base/ice_type.h | 2 - drivers/net/ice/base/ice_vlan_mode.c | 3 +- drivers/net/ice/base/ice_vlan_mode.h | 1 - 17 files changed, 424 insertions(+), 64 deletions(-) Acked-by: Qiming Yang