From patchwork Fri Feb 11 08:09:27 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jie Wang X-Patchwork-Id: 107355 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 0ABC4A00BE; Fri, 11 Feb 2022 09:09:38 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D5934410E5; Fri, 11 Feb 2022 09:09:38 +0100 (CET) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by mails.dpdk.org (Postfix) with ESMTP id CE5E540042 for ; Fri, 11 Feb 2022 09:09:37 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1644566978; x=1676102978; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=uvNYkAbLThUkOHbiAgHypmTAe3HfHLqkkt1yzktZuic=; b=mDqWXaJQ17yyQG1gRzlF3x196SvLJYnDbpjHjsdwzfDk2/5QLrB7GCbt 1jzJCqw54FaHbqbz/GEImmzdC8/WcxCW8XAK8PLM8ksOIfM0M7EsfljcG dOlCLZpTBiD+ovhBdtMl8Zl6FOrBVfuDPhpRPjD8C35VXv9T04pVPVnhR 1pV5zYVCd4apJwgD/2+yEFDvX4E+6TuAfhQzNE1SJyWUiK1DjJTNXHX/q nRnqAswK0K7DQgpZb1KqGp4Qh79IPQPfi81TV3Sns/K/vRvtQ1F5Sstni TlcZ9of/aTVTUw6kzJZU7vEelTR3ApYXgBY+2B0iD7kYcqiaDy9RAxTpn g==; X-IronPort-AV: E=McAfee;i="6200,9189,10254"; a="312968286" X-IronPort-AV: E=Sophos;i="5.88,360,1635231600"; d="scan'208";a="312968286" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 11 Feb 2022 00:09:37 -0800 X-IronPort-AV: E=Sophos;i="5.88,360,1635231600"; d="scan'208";a="702015496" Received: from intel-cd-odc-gavin.cd.intel.com ([10.240.178.138]) by orsmga005-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 11 Feb 2022 00:09:34 -0800 From: Jie Wang To: dev@dpdk.org Cc: stevex.yang@intel.com, jingjing.wu@intel.com, beilei.xing@intel.com, qi.z.zhang@intel.com, Jie Wang Subject: [PATCH v3 0/2] support L2TPv2 for AVF RSS and FDIR Date: Fri, 11 Feb 2022 16:09:27 +0800 Message-Id: <20220211080929.424165-1-jie1x.wang@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220211073646.409273-1-jie1x.wang@intel.com> References: <20220211073646.409273-1-jie1x.wang@intel.com> MIME-Version: 1.0 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 Support L2TPv2(include PPP over L2tpv2) for AVF RSS and FDIR based on outer MAC src/dst address and L2TPv2 session ID. Support PPPoL2TPv2oUDP for AVF FDIR based on inner IP src/dst address and TCP/UDP src/dst port. --- v3: update commit log and release notes. v2: upadte release notes. Jie Wang (2): net/iavf: support L2TPv2 for AVF RSS net/iavf: support L2TPv2 for AVF FDIR doc/guides/rel_notes/release_22_03.rst | 9 ++ drivers/net/iavf/iavf.h | 2 + drivers/net/iavf/iavf_fdir.c | 169 +++++++++++++++++++++---- drivers/net/iavf/iavf_generic_flow.c | 34 +++++ drivers/net/iavf/iavf_generic_flow.h | 10 ++ drivers/net/iavf/iavf_hash.c | 81 +++++++++++- 6 files changed, 273 insertions(+), 32 deletions(-)