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 B1B68A04FD; Mon, 23 May 2022 04:31:17 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 53B9E40156; Mon, 23 May 2022 04:31:17 +0200 (CEST) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mails.dpdk.org (Postfix) with ESMTP id DE2D040040 for ; Mon, 23 May 2022 04:31:14 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1653273075; x=1684809075; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=Cyxl4aEAOpPxZCSouVbsGwiqtmyJu7zpBqUNkZao/VQ=; b=XPVsfAx1pVX5UpIe8iviQmVDF1Jd4GUaj+NkJlaaPqbTqMX2+g2hYhdP M/el66Vd1UI0xU/JsKpTeEzukLiGUWoD80XdBI7qZqgQhzxB5fWBoBqD4 B4oVjDM4i7lNqxfva866+9loC96Rf+fPVZiUXKx4RG5ADemDwormOywUj gjYomErIWUTKLNr38acnlBFybSQuhkKLWmvmLg0tVzjnCzU7cER99YuIE 981L1MvHKZ3fD218ziEutxY8CLhwhKZ+J+fP6vzf3lm22DDY64qwjU+Xq gqXVQqv6GCHivaEJ9p2K5/ts2XeOmF9o+5v0EOijNkIVNW4FsSA9g5hpr Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10355"; a="270651608" X-IronPort-AV: E=Sophos;i="5.91,245,1647327600"; d="scan'208";a="270651608" Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 22 May 2022 19:31:13 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.91,245,1647327600"; d="scan'208";a="577169569" Received: from dpdk-jf-ntb-v2.sh.intel.com ([10.67.119.111]) by fmsmga007.fm.intel.com with ESMTP; 22 May 2022 19:31:12 -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 v6 0/3] Enable Protocol Agnostic Flow Offloading in AVF Date: Mon, 23 May 2022 10:31:33 +0800 Message-Id: <20220523023138.3777313-1-junfeng.guo@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220520091648.3524540-2-junfeng.guo@intel.com> References: <20220520091648.3524540-2-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 v6 1/3] common/iavf: support raw packet in protocol header [PATCH v6 2/3] net/iavf: enable Protocol Agnostic Flow Offloading FDIR [PATCH v6 3/3] net/iavf: support Protocol Agnostic Flow Offloading VF RSS v6: merge two commit into one for single commit compilation. 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 (2): common/iavf: support raw packet in protocol header 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