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 17DC3A00BE; Wed, 8 Jul 2020 10:24:31 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 3A6AD1DA2D; Wed, 8 Jul 2020 10:24:30 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 6EA5E1D9F5 for ; Wed, 8 Jul 2020 10:24:28 +0200 (CEST) IronPort-SDR: iUvwe38pH/tbMEY/6SEJUivsdta7aLoz7mvUJoR0QXFKVp0U7bIycX8J6nfcxx5yfbx1Vry0pM MHFRs4C5i4Og== X-IronPort-AV: E=McAfee;i="6000,8403,9675"; a="135991172" X-IronPort-AV: E=Sophos;i="5.75,327,1589266800"; d="scan'208";a="135991172" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Jul 2020 01:24:27 -0700 IronPort-SDR: dJEuVnrqE+rCgqYPRPvuuQvsbefGgxLmT9h4+cALK5Sn1LUxavCD/qqFiSLrKahV9UusXfNOw1 YBt0WfTZbZfw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,327,1589266800"; d="scan'208";a="314576798" Received: from fmsmsx105.amr.corp.intel.com ([10.18.124.203]) by orsmga008.jf.intel.com with ESMTP; 08 Jul 2020 01:24:27 -0700 Received: from fmsmsx158.amr.corp.intel.com (10.18.116.75) by FMSMSX105.amr.corp.intel.com (10.18.124.203) with Microsoft SMTP Server (TLS) id 14.3.439.0; Wed, 8 Jul 2020 01:24:27 -0700 Received: from shsmsx151.ccr.corp.intel.com (10.239.6.50) by fmsmsx158.amr.corp.intel.com (10.18.116.75) with Microsoft SMTP Server (TLS) id 14.3.439.0; Wed, 8 Jul 2020 01:24:27 -0700 Received: from shsmsx103.ccr.corp.intel.com ([169.254.4.22]) by SHSMSX151.ccr.corp.intel.com ([169.254.3.49]) with mapi id 14.03.0439.000; Wed, 8 Jul 2020 16:24:23 +0800 From: "Zhang, Qi Z" To: "Guo, Junfeng" , "Ye, Xiaolong" , "Xing, Beilei" , "Yigit, Ferruh" CC: "dev@dpdk.org" , "Guo, Jia" , "Su, Simei" Thread-Topic: [PATCH v4 0/3] add RSS support for IPv6 prefix Thread-Index: AQHWVPpZf81rqrTew0GNPyck1jckFKj9WE6Q Date: Wed, 8 Jul 2020 08:24:23 +0000 Message-ID: <039ED4275CED7440929022BC67E7061154856FC1@SHSMSX103.ccr.corp.intel.com> References: <20200708043621.276392-1-junfeng.guo@intel.com> <20200708073341.546583-1-junfeng.guo@intel.com> In-Reply-To: <20200708073341.546583-1-junfeng.guo@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-product: dlpe-windows dlp-version: 11.2.0.6 dlp-reaction: no-action x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v4 0/3] add RSS support for IPv6 prefix 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" > -----Original Message----- > From: Guo, Junfeng > Sent: Wednesday, July 8, 2020 3:34 PM > To: Zhang, Qi Z ; Ye, Xiaolong > ; Xing, Beilei ; Yigit, Fer= ruh > > Cc: dev@dpdk.org; Guo, Jia ; Guo, Junfeng > ; Su, Simei > Subject: [PATCH v4 0/3] add RSS support for IPv6 prefix >=20 > RSS for IPv6 prefix fields are supported in this patch, so that we can us= e > prefixes instead of full IPv6 address for RSS. These prefixes include the= first > 32, 48, 64 bits of both SRC and DST IPv6 address. > This feature is mainly for NAT64 scenarios. >=20 > v4: > * Code rebase. >=20 > v3: > * Code rebase. >=20 > v2: > * Split previous patch into 3 independent ones to be more clear. >=20 > [PATCH v4 1/3] ethdev: add new RSS types for IPv6 prefix [PATCH v4 2/3] > app/testpmd: support extended RSS offload types [PATCH v4 3/3] net/ice: > add RSS support for IPv6 prefix >=20 > Junfeng Guo (3): > ethdev: add new RSS types for IPv6 prefix > app/testpmd: support extended RSS offload types > net/ice: add RSS support for IPv6 prefix >=20 > app/test-pmd/cmdline.c | 6 + > app/test-pmd/config.c | 3 + > drivers/net/ice/ice_hash.c | 207 > +++++++++++++++++++++++++++++++++ > lib/librte_ethdev/rte_ethdev.h | 51 ++++++++ > 4 files changed, 267 insertions(+) >=20 > -- > 2.25.1 Acked-by: Qi Zhang Applied to dpdk-next-net-intel. Thanks Qi