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 mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by smtp.lore.kernel.org (Postfix) with ESMTP id 9EC47C433F5 for ; Fri, 8 Apr 2022 09:12:10 +0000 (UTC) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id AE4624067E; Fri, 8 Apr 2022 11:12:09 +0200 (CEST) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id 008EB4003F for ; Fri, 8 Apr 2022 11:12:07 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1649409128; x=1680945128; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=pr4UN7JTL952iFChBDObt8WQ2rRHHPv79ngYCLOQDaU=; b=N+wvHRF7k8N5lHwWjchKwZodG+14PErVeYSjEMdZmZg+sGytUGD1hYJ7 Gg/3MzWn8LFNktQSWX9UTyU3jJpiAT2bK8be3tRfJOFUI91NTHg4kQTRK xkuVPQgWUhkW/ao7iwjV3LOebNua20we7sgqno4w2rNThSYzZtgp4eKW7 FtCwAqsxNTOAnckDm6k3+MtBy9g6Xy6Ay5jqdWu/Zud5FZSSAdmGcToV0 J4f+JPnui2FO0uPGKtswzcBFTJAZfbNY4JsacHVinJOmlqo2YO7KszqUN z5vHS+h5HNGd08+XGi6hsOXn88OUr5MViuKdWjJ501lS1/pfeGd8uygim g==; X-IronPort-AV: E=McAfee;i="6400,9594,10310"; a="286539896" X-IronPort-AV: E=Sophos;i="5.90,244,1643702400"; d="scan'208";a="286539896" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Apr 2022 02:12:06 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,244,1643702400"; d="scan'208";a="723322857" Received: from dpdk-jf-ntb-v2.sh.intel.com ([10.67.119.111]) by orsmga005.jf.intel.com with ESMTP; 08 Apr 2022 02:12:04 -0700 From: Junfeng Guo To: qi.z.zhang@intel.com, jingjing.wu@intel.com, beilei.xing@intel.com Cc: dev@dpdk.org, junfeng.guo@intel.com Subject: [PATCH v3 0/3] Enable Protocol Agnostic Flow Offloading FDIR in AVF Date: Fri, 8 Apr 2022 17:12:15 +0800 Message-Id: <20220408091218.240922-1-junfeng.guo@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220408080245.173253-4-junfeng.guo@intel.com> References: <20220408080245.173253-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 in AVF. [PATCH v3 1/3] common/iavf: support raw packet in protocol header [PATCH v3 2/3] net/iavf: align with proto hdr struct change [PATCH v3 3/3] net/iavf: enable Protocol Agnostic Flow Offloading FDIR 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 doc/guides/rel_notes/release_22_07.rst | 4 + 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 | 180 +++++++++++++------------ 6 files changed, 188 insertions(+), 92 deletions(-) -- 2.25.1