From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 0E694A0C57; Mon, 1 Nov 2021 09:37:11 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9712E410E6; Mon, 1 Nov 2021 09:37:10 +0100 (CET) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mails.dpdk.org (Postfix) with ESMTP id 7C73140DF6 for ; Mon, 1 Nov 2021 09:37:08 +0100 (CET) X-IronPort-AV: E=McAfee;i="6200,9189,10154"; a="211025965" X-IronPort-AV: E=Sophos;i="5.87,198,1631602800"; d="scan'208";a="211025965" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 01 Nov 2021 01:37:07 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.87,198,1631602800"; d="scan'208";a="499954030" Received: from dpdk-junfengguo-v1.sh.intel.com ([10.67.119.216]) by orsmga008.jf.intel.com with ESMTP; 01 Nov 2021 01:37:05 -0700 From: Junfeng Guo To: qi.z.zhang@intel.com, jingjing.wu@intel.com, beilei.xing@intel.com Cc: dev@dpdk.org, ferruh.yigit@intel.com, ting.xu@intel.com, junfeng.guo@intel.com Date: Mon, 1 Nov 2021 16:36:08 +0800 Message-Id: <20211101083612.2380503-1-junfeng.guo@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20211028091346.1674650-5-junfeng.guo@intel.com> References: <20211028091346.1674650-5-junfeng.guo@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v8 0/4] enable protocol agnostic flow offloading in FDIR 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" Protocol agnostic flow offloading in Flow Director is enabled by this patch set based on the Parser Library using existing rte_flow raw API. [PATCH v8 1/4] net/ice/base: add method to disable FDIR SWAP option. [PATCH v8 2/4] net/ice/base: add function to set HW profile for raw flow. [PATCH v8 3/4] app/testpmd: update Max RAW pattern size to 512. [PATCH v8 4/4] net/ice: enable protocol agnostic flow offloading in FDIR. Junfeng Guo (4): net/ice/base: add method to disable FDIR SWAP option net/ice/base: add function to set HW profile for raw flow app/testpmd: update Max RAW pattern size to 512 net/ice: enable protocol agnostic flow offloading in FDIR * v8: Replaced profile info list with a table. * v7: Fixed LIST_FOR_EACH_ENTRY logic. * v6: Removed redundant code. * v5: Optimized some code logic. * v4: Added list to check inputset conflict. * v3: Added necessary base code for raw flow in FDIR. * v2: Enabled vxlan port add for raw flow and updated commit message app/test-pmd/cmdline_flow.c | 2 +- doc/guides/rel_notes/release_21_11.rst | 1 + drivers/net/ice/base/README | 2 +- drivers/net/ice/base/ice_flex_pipe.c | 93 +++++++++- drivers/net/ice/base/ice_flex_pipe.h | 6 +- drivers/net/ice/base/ice_flow.c | 86 ++++++++- drivers/net/ice/base/ice_flow.h | 4 + drivers/net/ice/ice_ethdev.h | 14 ++ drivers/net/ice/ice_fdir_filter.c | 235 +++++++++++++++++++++++++ drivers/net/ice/ice_generic_flow.c | 7 + drivers/net/ice/ice_generic_flow.h | 3 + 11 files changed, 447 insertions(+), 6 deletions(-) -- 2.25.1