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 F2E82A325E for ; Mon, 21 Oct 2019 16:27:10 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 61AC21BEE1; Mon, 21 Oct 2019 16:27:09 +0200 (CEST) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 1DDFC1BECD for ; Mon, 21 Oct 2019 16:27:07 +0200 (CEST) X-Amp-Result: UNKNOWN X-Amp-Original-Verdict: FILE UNKNOWN X-Amp-File-Uploaded: False Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 21 Oct 2019 07:27:07 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.67,323,1566889200"; d="scan'208";a="191126956" Received: from yexl-server.sh.intel.com (HELO localhost) ([10.67.117.17]) by orsmga008.jf.intel.com with ESMTP; 21 Oct 2019 07:27:06 -0700 Date: Mon, 21 Oct 2019 22:24:04 +0800 From: Ye Xiaolong To: Simei Su Cc: qi.z.zhang@intel.com, dev@dpdk.org Message-ID: <20191021142404.GE72825@intel.com> References: <1571537689-351403-1-git-send-email-simei.su@intel.com> <1571659612-46066-1-git-send-email-simei.su@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1571659612-46066-1-git-send-email-simei.su@intel.com> User-Agent: Mutt/1.9.4 (2018-02-28) Subject: Re: [dpdk-dev] [PATCH v8 0/3] net/ice: enable advanced RSS 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" On 10/21, Simei Su wrote: >[PATCH v8 1/2] add teid hash for gtupu and session id hash for pppoe/pppod. >[PATCH v8 2/2] support input set change and symmetric hash by rte_flow RSS action. > >v8: >* Change meta type from uint64_t to void pointer for pattern structure. >* Modify related code in ice_hash.c about above change. > >v7: >* Rebase patches to solve merge conflict. > >v6: >* Add simultaneous use of SRC_ONLY and DST_ONLY of the same level. >* Update cases in ice_hash_type_list[]. > >v5: >* Update title for cover letter and commit log. >* Fix some code style. > >v4: >* Add rss support for gtpu with teid and pppoe/pppod with session id. >* Split up into patchset. > >v3: >* Modify codes according to the comments. >* Update release notes and Makefile/meson.build. > >v2: >* Amend to resend patch that v1 is not in community. > >Simei Su (3): > net/ice: add RSS configuration for gtpu/pppoe > net/ice: change one member type of the pattern structure > net/ice: enable advanced RSS > > doc/guides/rel_notes/release_19_11.rst | 1 + > drivers/net/ice/Makefile | 1 + > drivers/net/ice/ice_ethdev.c | 24 ++ > drivers/net/ice/ice_generic_flow.h | 2 +- > drivers/net/ice/ice_hash.c | 562 +++++++++++++++++++++++++++++++++ > drivers/net/ice/meson.build | 3 +- > 6 files changed, 591 insertions(+), 2 deletions(-) > create mode 100644 drivers/net/ice/ice_hash.c > >-- >1.8.3.1 > Series applied to dpdk-next-net-intel. Thanks, Xiaolong