From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id CDFCAA04A5; Wed, 17 Jun 2020 09:38:26 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id E10AC1252; Wed, 17 Jun 2020 09:38:25 +0200 (CEST) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 30E03A3 for ; Wed, 17 Jun 2020 09:38:24 +0200 (CEST) IronPort-SDR: Lcy+4U7O833s+EapJhw2hVsbWyvumWiG1FwmxuD+wtx4gIs4/Jbg0tBXfgTDXV1ttNjYWETu8s DODjIvGvY+RQ== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jun 2020 00:38:23 -0700 IronPort-SDR: fkvqLrFLbGO/C8Dq9q1rSICs7DiXcbOtIvLH0m8eR2uwJ5RMQaNUA1EP2NIJmUYskhDlO3rjv1 gRYJtE2YiL0w== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.73,521,1583222400"; d="scan'208";a="476756269" Received: from dpdk-junfengguo-v3.sh.intel.com ([10.67.119.102]) by fmsmga005.fm.intel.com with ESMTP; 17 Jun 2020 00:38:17 -0700 From: Junfeng Guo To: qi.z.zhang@intel.com, xiaolong.ye@intel.com, beilei.xing@intel.com Cc: dev@dpdk.org, jia.guo@intel.com, junfeng.guo@intel.com, simei.su@intel.com Date: Wed, 17 Jun 2020 15:36:39 +0800 Message-Id: <20200617073641.13613-1-junfeng.guo@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200612081032.54201-1-junfeng.guo@intel.com> References: <20200612081032.54201-1-junfeng.guo@intel.com> Subject: [dpdk-dev] [PATCH v2 0/2] add RSS support for ipv4 ipv6 mix of GTP on VF and PF X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" RSS for GTP with outer & inner ipv4 & ipv6 combination are supported in this patchset, so that we can process RSS based on inner 5 tuples or 3 tuples of all the cases below of GTP packets: 1. ipv4 (outer) + ipv4 (inner) 2. ipv4 (outer) + ipv6 (inner) 3. ipv6 (outer) + ipv4 (inner) 4. ipv6 (outer) + ipv6 (inner) [PATCH v2 1/2] add RSS support for ipv4 ipv6 mix of GTP on PF [PATCH v2 2/2] add RSS support for ipv4 ipv6 mix of GTP on VF v2: * Code rebase. Junfeng Guo (2): net/ice: add RSS support for ipv4 ipv6 mix of GTP net/iavf: add RSS support for ipv4 ipv6 mix of GTP drivers/net/iavf/iavf_generic_flow.c | 365 ++++++++ drivers/net/iavf/iavf_generic_flow.h | 54 ++ drivers/net/iavf/iavf_hash.c | 1202 ++++++++++++++++++++++++-- drivers/net/ice/ice_generic_flow.c | 368 ++++++++ drivers/net/ice/ice_generic_flow.h | 47 + drivers/net/ice/ice_hash.c | 118 +++ 6 files changed, 2104 insertions(+), 50 deletions(-) -- 2.17.1