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 5B95DA2E1B for ; Thu, 5 Sep 2019 05:46:32 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 277141EAE2; Thu, 5 Sep 2019 05:46:31 +0200 (CEST) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id 3F7DB1E984 for ; Thu, 5 Sep 2019 05:46:29 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 04 Sep 2019 20:46:28 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,469,1559545200"; d="scan'208";a="207719841" Received: from dpdk51.sh.intel.com ([10.67.110.245]) by fmsmga004.fm.intel.com with ESMTP; 04 Sep 2019 20:46:27 -0700 From: Qi Zhang To: wenzhuo.lu@intel.com, qiming.yang@intel.com Cc: dev@dpdk.org, xiaolong.ye@intel.com, Qi Zhang Date: Thu, 5 Sep 2019 11:48:53 +0800 Message-Id: <20190905034909.38287-1-qi.z.zhang@intel.com> X-Mailer: git-send-email 2.13.6 In-Reply-To: <20190902035551.16852-1-qi.z.zhang@intel.com> References: <20190902035551.16852-1-qi.z.zhang@intel.com> Subject: [dpdk-dev] [PATCH v2 00/16] net/ice/base: share code update secend batch. 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" The patchset depends on the first batch http://patchwork.dpdk.org/project/dpdk/list/?series=6158&state=* Key Features: 1) Add tunnel support for fdir 2) Add non-word aligned field support for fdir 3) Add dest mac field support for fdir 4) Add flow count support for fdir 5) Add queue region support for fdir 6) Add vlan pppoe support for switch Qi Zhang (16): net/ice/base: remove redundant empty lines net/ice/base: add support for tunnel packets net/ice/base: add non-word aligned ip field support net/ice/base: add non-word aligned ipv6 field support net/ice/base: correct the mask for checking protocol header net/ice/base: propagate errors from functions net/ice/base: remove pointless NULL check of port info net/ice/base: remove RSS code as iavf host net/ice/base: add support for switch rule about VLAN PPPoE net/ice/base: minor structure refactor net/ice/base: associate switch recipe to profiles net/ice/base: enable RSS for PPPoE with SCTP net/ice/base: enable fdir queue region net/ice/base: enable setting up FDIR counters net/ice/base: add dest MAC field support for FDIR net/ice/base: update FW API minor version drivers/net/ice/base/ice_adminq_cmd.h | 111 ---------- drivers/net/ice/base/ice_bitops.h | 2 - drivers/net/ice/base/ice_common.c | 25 --- drivers/net/ice/base/ice_common.h | 2 - drivers/net/ice/base/ice_controlq.c | 9 - drivers/net/ice/base/ice_controlq.h | 3 +- drivers/net/ice/base/ice_devids.h | 1 - drivers/net/ice/base/ice_fdir.c | 350 +++++++++++++++++++++++++------ drivers/net/ice/base/ice_fdir.h | 19 +- drivers/net/ice/base/ice_flex_pipe.c | 5 - drivers/net/ice/base/ice_flex_pipe.h | 1 - drivers/net/ice/base/ice_flow.c | 159 ++------------ drivers/net/ice/base/ice_hw_autogen.h | 2 - drivers/net/ice/base/ice_lan_tx_rx.h | 9 - drivers/net/ice/base/ice_nvm.c | 4 - drivers/net/ice/base/ice_protocol_type.h | 10 +- drivers/net/ice/base/ice_sched.c | 7 +- drivers/net/ice/base/ice_switch.c | 52 ++--- drivers/net/ice/base/ice_switch.h | 2 - drivers/net/ice/base/ice_type.h | 19 +- 20 files changed, 371 insertions(+), 421 deletions(-) -- 2.13.6