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 D3BA5A00C3; Thu, 21 Apr 2022 05:28:38 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C1D91410FF; Thu, 21 Apr 2022 05:28:38 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mails.dpdk.org (Postfix) with ESMTP id 99932410E1 for ; Thu, 21 Apr 2022 05:28:36 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1650511716; x=1682047716; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=KE1kj9aT56FicCaFQApLjmHBq3Ji5ZzykZULIIdER7Y=; b=NYVjWg/QYf3GfWPfO6h4wlwsnhhOJH6teBgSNQ+Lnhg91ePVTZX6kkA0 Q1Eym+QVFGXKOWv7oCpnytfuTO2K3bsT0qgzGcjIaH2RvN30bPZjfgZnC xYLhz+UK7QHIH/iYtFPAO9g9JUXFyILkGm+zacyY4XoD39MTSMhCov4NP SJn8CHQNkif0U6oEb46wowYCCcqY94DWkKR1FHeOIvASac9w3AYvwCYqC wqHMhZSZlb9gqhTh22hezqHjiQT+zk+1F4Z7cBK/QUk4LrckF9Cvp5kUw dCmrRHAlGSnuKBtRIJgueYpM87Kt1aMQkqkTlZQIb/ty9bTOaHZn3+6oW A==; X-IronPort-AV: E=McAfee;i="6400,9594,10323"; a="244157816" X-IronPort-AV: E=Sophos;i="5.90,277,1643702400"; d="scan'208";a="244157816" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 20 Apr 2022 20:28:35 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,277,1643702400"; d="scan'208";a="576972810" Received: from dpdk-jf-ntb-v2.sh.intel.com ([10.67.119.111]) by orsmga008.jf.intel.com with ESMTP; 20 Apr 2022 20:28:33 -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 v4 0/4] Enable Protocol Agnostic Flow Offloading in AVF Date: Thu, 21 Apr 2022 11:28:47 +0800 Message-Id: <20220421032851.1355350-1-junfeng.guo@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220408091218.240922-4-junfeng.guo@intel.com> References: <20220408091218.240922-4-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. [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 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