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 76BF9A0613 for ; Fri, 27 Sep 2019 05:18:04 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 467602C08; Fri, 27 Sep 2019 05:18:03 +0200 (CEST) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id B139423D for ; Fri, 27 Sep 2019 05:18:01 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga101.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 26 Sep 2019 20:18:00 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,553,1559545200"; d="scan'208";a="389832876" Received: from npg-dpdk-cvl-yingwang-117d84.sh.intel.com ([10.67.117.96]) by fmsmga005.fm.intel.com with ESMTP; 26 Sep 2019 20:17:59 -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: Fri, 27 Sep 2019 02:55:19 +0800 Message-Id: <20190926185524.317595-1-ying.a.wang@intel.com> X-Mailer: git-send-email 2.15.1 In-Reply-To: <20190916230615.411726-2-ying.a.wang@intel.com> References: <20190916230615.411726-2-ying.a.wang@intel.com> Subject: [dpdk-dev] [PATCH v3 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/58102/ [v4,1/2] ethdev: add GTP extension header to flow API (2) 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 --- v3: rebase patches to solve merge conflict; redefine inpustet bit field; 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 | 31 +- drivers/net/ice/ice_ethdev.h | 16 +- drivers/net/ice/ice_generic_flow.c | 2072 +++++++++++++++++++++++++------- drivers/net/ice/ice_generic_flow.h | 1042 +++++++--------- drivers/net/ice/ice_switch_filter.c | 918 ++++++++++++-- drivers/net/ice/ice_switch_filter.h | 24 - 8 files changed, 2944 insertions(+), 1181 deletions(-) delete mode 100644 drivers/net/ice/ice_switch_filter.h -- 2.15.1