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 DD8B4A0503; Fri, 20 May 2022 11:16:26 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id CD3BC427ED; Fri, 20 May 2022 11:16:26 +0200 (CEST) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id B5AD940222 for ; Fri, 20 May 2022 11:16:25 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1653038185; x=1684574185; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=N/GJtIqsYuvwksascxlIPFCdf/y1Ha8T0/N36F8iExQ=; b=ktg8In8oZSD1bhJycBspnLRGE1G5TPeVu5cXiCvH8hkkmDJRBHLymKVw MObwLq+59/u2i/6NOjXVhrY/Nvcc7r2YWOmqpapTC3pNOiDTV9GgwHu1w e4bsnT8P7WFeo7tt2cM344fCUc+dwm2dQcge23P3mwt7qu0i1RVkjOyXY zmMJiVbd8ssX5GllRpeR07uld8g67uHDvLozhyrydvmTGgbvbBH5GX31C CkQOX/+oTid+Ssars9Uh+UFyv9Utdz/aMia6n5ET10jwf69SUbzQeRR5x QT13mLi1ujmAfun35cZf7sRhDYpFx8LZyRvc4ms6EUGwYlCAoR1qXkMLl w==; X-IronPort-AV: E=McAfee;i="6400,9594,10352"; a="297857428" X-IronPort-AV: E=Sophos;i="5.91,238,1647327600"; d="scan'208";a="297857428" Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 20 May 2022 02:16:24 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.91,238,1647327600"; d="scan'208";a="715432653" Received: from dpdk-jf-ntb-v2.sh.intel.com ([10.67.119.111]) by fmsmga001.fm.intel.com with ESMTP; 20 May 2022 02:16:23 -0700 From: Junfeng Guo To: qi.z.zhang@intel.com, jingjing.wu@intel.com, beilei.xing@intel.com Cc: dev@dpdk.org, ting.xu@intel.com, junfeng.guo@intel.com Subject: [PATCH v5 0/4] Enable Protocol Agnostic Flow Offloading in AVF Date: Fri, 20 May 2022 17:16:44 +0800 Message-Id: <20220520091648.3524540-1-junfeng.guo@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220421032851.1355350-5-junfeng.guo@intel.com> References: <20220421032851.1355350-5-junfeng.guo@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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 This patch set enabled Protocol Agnostic Flow (raw flow) Offloading for FDIR and RSS in AVF, based on the Parser Library feature and the existing rte_flow `raw` API. [PATCH v4 1/4] common/iavf: support raw packet in protocol header [PATCH v4 2/4] net/iavf: align with proto hdr struct change [PATCH v4 3/4] net/iavf: enable Protocol Agnostic Flow Offloading FDIR [PATCH v4 4/4] net/iavf: support Protocol Agnostic Flow Offloading VF RSS v5: code rebase and update commit messages. v4: add support raw flow for RSS in AVF. v3: fix CI build issue. v2: add release notes and document update. Junfeng Guo (3): common/iavf: support raw packet in protocol header net/iavf: align with proto hdr struct change net/iavf: enable Protocol Agnostic Flow Offloading FDIR Ting Xu (1): net/iavf: support Protocol Agnostic Flow Offloading VF RSS doc/guides/rel_notes/release_22_07.rst | 1 + drivers/common/iavf/virtchnl.h | 20 +- drivers/net/iavf/iavf_fdir.c | 67 ++++++ drivers/net/iavf/iavf_generic_flow.c | 6 + drivers/net/iavf/iavf_generic_flow.h | 3 + drivers/net/iavf/iavf_hash.c | 276 +++++++++++++++++-------- 6 files changed, 281 insertions(+), 92 deletions(-) -- 2.25.1