From patchwork Tue Feb 15 08:25:35 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jie Wang X-Patchwork-Id: 107569 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 7444AA00C5; Tue, 15 Feb 2022 09:26:02 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 428AB410F7; Tue, 15 Feb 2022 09:26:02 +0100 (CET) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by mails.dpdk.org (Postfix) with ESMTP id EBF4540E78 for ; Tue, 15 Feb 2022 09:25:59 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1644913560; x=1676449560; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=um07KrSs/CW6b21buzwDSXlutByMkr3KSBKfqQcO0f0=; b=K9Zim+9SSWBy4ugJq/drgtim3cEoXwvgn6mtTPa656Qdy/hhkJtRDguC XCSCenCfu3Z4+gfWN4yJ0rYTWBJxXRArKMEAy6Fb80eLWc4ba2gOxlbKl X0nSyS5Y4cGAI4gAOYAunuISN5ltw2uPkZZJa1AyEp2YhiBruk6NPDGgj BxKZkPfBbu0lV0IQ6emXY5XDrv18B68yUKa0GqI2axJtob1nsr26pK8rO tJfwhP5VLyeNO9QyMehl5+Qzs/CFdKWdzcp7VSgWHRvLQFWJGm5CfzVSp 8H4q23QLVo/TDbgKmJK8ryjnYOt/HYsVaeT0bBrtwCNzll0/Nt/NtDpIl A==; X-IronPort-AV: E=McAfee;i="6200,9189,10258"; a="249123615" X-IronPort-AV: E=Sophos;i="5.88,370,1635231600"; d="scan'208";a="249123615" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 15 Feb 2022 00:25:59 -0800 X-IronPort-AV: E=Sophos;i="5.88,370,1635231600"; d="scan'208";a="703511236" 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; 15 Feb 2022 00:25:56 -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 v4 0/2] support L2TPv2 for AVF RSS and FDIR Date: Tue, 15 Feb 2022 16:25:35 +0800 Message-Id: <20220215082538.1010351-1-jie1x.wang@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220211080929.424165-1-jie1x.wang@intel.com> References: <20220211080929.424165-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. --- v4: rebase main branch. 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(-)