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 B1734A2EFC for ; Tue, 17 Sep 2019 09:28:47 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 7DB141BFAD; Tue, 17 Sep 2019 09:28:46 +0200 (CEST) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id 5685A1BF71 for ; Tue, 17 Sep 2019 09:28:45 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 17 Sep 2019 00:28:44 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,515,1559545200"; d="scan'208";a="187384633" Received: from unknown (HELO npg-dpdk-cvl-yingwang-117d84.sh.intel.com) ([10.67.117.84]) by fmsmga007.fm.intel.com with ESMTP; 17 Sep 2019 00:28:42 -0700 From: Ying Wang To: xiaolong.ye@intel.com, qi.z.zhang@intel.com Cc: dev@dpdk.org, qiming.yang@intel.com, wei.zhao1@intel.com, ying.a.wang@intel.com Date: Tue, 17 Sep 2019 07:06:10 +0800 Message-Id: <20190916230615.411726-1-ying.a.wang@intel.com> X-Mailer: git-send-email 2.15.1 In-Reply-To: <20190903221522.151382-2-ying.a.wang@intel.com> References: <20190903221522.151382-2-ying.a.wang@intel.com> Subject: [dpdk-dev] [PATCH v2 0/5] rework for ice generic flow framework and switch filter 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" patch 1/5 minor code clean patch 2/5 adds devargs to control pipeline mode patch 3/5 rework for ice generic flow framework patch 4/5 add rte_flow pattern list patch 5/5 rework switch filter on new framework The patchset depend on the following patches in patchwork: (1) http://patches.dpdk.org/patch/59286/ [v8] net/ice: support device-specific DDP package loading (2) http://patches.dpdk.org/patch/58102/ [v4,1/2] ethdev: add GTP extension header to flow API (3) http://patches.dpdk.org/patch/58103/ [v4,2/2] ethdev: add PPPoE to flow API Qiming Yang (1): net/ice: add devargs to control pipeline mode Ying Wang (3): net/ice: minor code clean net/ice: rework for generic flow enabling net/ice: add pattern manifest wei zhao (1): net/ice: rework switch filter --- v2: modify codes according to the comments; update doc and release note; add a separate code clean patch; --- doc/guides/nics/ice.rst | 19 + doc/guides/rel_notes/release_19_11.rst | 3 + drivers/net/ice/ice_ethdev.c | 32 +- drivers/net/ice/ice_ethdev.h | 16 +- drivers/net/ice/ice_generic_flow.c | 2073 +++++++++++++++++++++++++------- drivers/net/ice/ice_generic_flow.h | 941 ++++++--------- drivers/net/ice/ice_switch_filter.c | 883 ++++++++++++-- drivers/net/ice/ice_switch_filter.h | 24 - 8 files changed, 2810 insertions(+), 1181 deletions(-) delete mode 100644 drivers/net/ice/ice_switch_filter.h -- 2.15.1