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 28361A00BE; Fri, 8 Apr 2022 10:02:38 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id A93D34069F; Fri, 8 Apr 2022 10:02:37 +0200 (CEST) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by mails.dpdk.org (Postfix) with ESMTP id 4EA844003F for ; Fri, 8 Apr 2022 10:02: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=1649404956; x=1680940956; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=3mwTT9CcvJyFr4MayqE2NEPAmUDQK4/xrTnilEr/4Sw=; b=NSwxo074KOFNtxA9Mj47aGNN/RNwp4307xkuGxWu9ED2UWtY3dT0CCXa DSIKmcqKvpvUi4GGZwtmHIoO4Yw1IaTj/5YJi/K9zMSLUaX8/KcarYJzM rUdumD3IUdiwIS5zQ0SMP/WmQRDmMqh2A3aeUgA80gixaZJkPcVrpAF5M iCQFs+n0wV0iFDQO1QATVMygtqj2VHpIaemo4uVqHh8E8ELdwPtIYoMmJ C2q11by6kMOX/JNdf1J7mTsK9N9GbBy05lO2tacyh4o8wMI5+6LBqmokT e+2sOClNYrHEmo/8bmIFMlfzFfiFi2IPOn1HoXdbu1cz/8BK19rZOP/oZ g==; X-IronPort-AV: E=McAfee;i="6400,9594,10310"; a="242135610" X-IronPort-AV: E=Sophos;i="5.90,244,1643702400"; d="scan'208";a="242135610" Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Apr 2022 01:02:35 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,244,1643702400"; d="scan'208";a="506477455" Received: from dpdk-jf-ntb-v2.sh.intel.com ([10.67.119.111]) by orsmga003.jf.intel.com with ESMTP; 08 Apr 2022 01:02:33 -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 v2 0/3] Enable Protocol Agnostic Flow Offloading FDIR in AVF Date: Fri, 8 Apr 2022 16:02:42 +0800 Message-Id: <20220408080245.173253-1-junfeng.guo@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220407062721.3886136-4-junfeng.guo@intel.com> References: <20220407062721.3886136-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 v2 1/3] common/iavf: support raw packet in protocol header [PATCH v2 2/3] net/iavf: align with proto hdr struct change [PATCH v2 3/3] net/iavf: enable Protocol Agnostic Flow Offloading FDIR 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 | 66 +++++++++ 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, 187 insertions(+), 92 deletions(-) -- 2.25.1