From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 03CE6C433F5 for ; Tue, 26 Oct 2021 12:01:36 +0000 (UTC) Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by mail.kernel.org (Postfix) with ESMTP id 9A4A0601FC for ; Tue, 26 Oct 2021 12:01:35 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 9A4A0601FC Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dpdk.org Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0D0C7410DD; Tue, 26 Oct 2021 14:01:35 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id D978B407FF for ; Tue, 26 Oct 2021 14:01:32 +0200 (CEST) X-IronPort-AV: E=McAfee;i="6200,9189,10148"; a="217055864" X-IronPort-AV: E=Sophos;i="5.87,182,1631602800"; d="scan'208";a="217055864" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 26 Oct 2021 05:01:09 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.87,182,1631602800"; d="scan'208";a="446717438" Received: from dpdk-junfengguo-v1.sh.intel.com ([10.67.119.216]) by orsmga006.jf.intel.com with ESMTP; 26 Oct 2021 05:01:07 -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, haiyue.wang@intel.com, zhirun.yan@intel.com, junfeng.guo@intel.com Date: Tue, 26 Oct 2021 20:00:52 +0800 Message-Id: <20211026120056.1442501-1-junfeng.guo@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20211014153705.3301663-6-junfeng.guo@intel.com> References: <20211014153705.3301663-6-junfeng.guo@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v4 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 v4 1/4] net/ice/base: add method to disable FDIR SWAP option. [PATCH v4 2/4] net/ice/base: add function to set HW profile for raw flow. [PATCH v4 3/4] app/testpmd: update Max RAW pattern size to 512. [PATCH v4 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 * 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/ice_flex_pipe.c | 99 +++++++++- drivers/net/ice/base/ice_flex_pipe.h | 7 +- drivers/net/ice/base/ice_flow.c | 87 ++++++++- drivers/net/ice/base/ice_flow.h | 4 + drivers/net/ice/ice_ethdev.h | 17 ++ drivers/net/ice/ice_fdir_filter.c | 249 +++++++++++++++++++++++++ drivers/net/ice/ice_generic_flow.c | 7 + drivers/net/ice/ice_generic_flow.h | 3 + 10 files changed, 471 insertions(+), 5 deletions(-) -- 2.25.1