From patchwork Fri Sep 27 09:53:34 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simei Su X-Patchwork-Id: 60012 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 30F141BECE; Fri, 27 Sep 2019 11:53:44 +0200 (CEST) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id D41661BE9C for ; Fri, 27 Sep 2019 11:53:41 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 27 Sep 2019 02:53:40 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,555,1559545200"; d="scan'208";a="183924427" Received: from npg-dpdk-cvl-simeisu-118d193.sh.intel.com ([10.67.110.183]) by orsmga008.jf.intel.com with ESMTP; 27 Sep 2019 02:53:39 -0700 From: Simei Su To: qi.z.zhang@intel.com, xiaolong.ye@intel.com, beilei.xing@intel.com, qiming.yang@intel.com Cc: dev@dpdk.org, simei.su@intel.com Date: Fri, 27 Sep 2019 17:53:34 +0800 Message-Id: <1569578016-182725-1-git-send-email-simei.su@intel.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1568870129-154706-1-git-send-email-simei.su@intel.com> References: <1568870129-154706-1-git-send-email-simei.su@intel.com> Subject: [dpdk-dev] [PATCH v4 0/2] 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" [PATCH v4 1/2] add teid hash for gtupu and session id hash for pppoe/pppod. [PATCH v4 2/2] support input set change and symmetric hash by rte_flow RSS action. [PTACH v4 2/2] depends on the following patches on patchwork: (1)net/ice: rework for generic flow enabling (2)https://patchwork.dpdk.org/patch/57137/ [v2,1/2] ethdev: add symmetric toeplitz hash support (3)https://patchwork.dpdk.org/patch/57138/ [v2,2/2] app/testpmd: add symmetric toeplitz hash support (4)https://patchwork.dpdk.org/patch/59982/ [v4,1/3] ethdev: decouple flow types and RSS offload types (5)https://patchwork.dpdk.org/patch/59983/ [v4,2/3] ethdev: extend RSS offload types (6)https://patchwork.dpdk.org/patch/59985/ [v4,3/2] app/testpmd: add RSS offload types extending support 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 (2): net/ice: add RSS configuration for gtpu/pppoe 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_hash.c | 556 +++++++++++++++++++++++++++++++++ drivers/net/ice/meson.build | 1 + 5 files changed, 583 insertions(+) create mode 100644 drivers/net/ice/ice_hash.c