[dpdk-stable] patch 'net/hns3: add RSS hash offload to Rx configuration' has been queued to stable release 19.11.4

luca.boccassi at gmail.com luca.boccassi at gmail.com
Fri Jul 24 13:57:23 CEST 2020


Hi,

FYI, your patch has been queued to stable release 19.11.4

Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 07/26/20. So please
shout if anyone has objections.

Also note that after the patch there's a diff of the upstream commit vs the
patch applied to the branch. This will indicate if there was any rebasing
needed to apply to the stable branch. If there were code changes for rebasing
(ie: not only metadata diffs), please double check that the rebase was
correctly done.

Thanks.

Luca Boccassi

---
>From 36e0995b4d49f026bcb0eeb29c1e1d11b2b72179 Mon Sep 17 00:00:00 2001
From: Lijun Ou <oulijun at huawei.com>
Date: Fri, 22 May 2020 17:21:17 +0800
Subject: [PATCH] net/hns3: add RSS hash offload to Rx configuration

[ upstream commit fdae939696a09b4010df004be06c491d9294e319 ]

Rx offload flag `DEV_RX_OFFLOAD_RSS_HASH` which can be used to
enable/disable PMDs write to `rte_mbuf::hash::rss`. The hns3 PMD driver
already can notify the validity of `rte_mbuf::hash:rss` to the
application by enabling `PKT_RX_RSS_HASH` flag in `rte_mbuf::ol_flags`.

Fixes: 19a3ca4c99cf ("net/hns3: add start/stop and configure operations")
Fixes: c37ca66f2b27 ("net/hns3: support RSS")

Signed-off-by: Lijun Ou <oulijun at huawei.com>
Signed-off-by: Wei Hu (Xavier) <xavier.huwei at huawei.com>
---
 drivers/net/hns3/hns3_ethdev.c    | 1 +
 drivers/net/hns3/hns3_ethdev_vf.c | 1 +
 2 files changed, 2 insertions(+)

diff --git a/drivers/net/hns3/hns3_ethdev.c b/drivers/net/hns3/hns3_ethdev.c
index dbe747f9d..85d432d36 100644
--- a/drivers/net/hns3/hns3_ethdev.c
+++ b/drivers/net/hns3/hns3_ethdev.c
@@ -2228,6 +2228,7 @@ hns3_dev_configure(struct rte_eth_dev *dev)
 
 	/* When RSS is not configured, redirect the packet queue 0 */
 	if ((uint32_t)mq_mode & ETH_MQ_RX_RSS_FLAG) {
+		conf->rxmode.offloads |= DEV_RX_OFFLOAD_RSS_HASH;
 		rss_conf = conf->rx_adv_conf.rss_conf;
 		if (rss_conf.rss_key == NULL) {
 			rss_conf.rss_key = rss_cfg->key;
diff --git a/drivers/net/hns3/hns3_ethdev_vf.c b/drivers/net/hns3/hns3_ethdev_vf.c
index 251d0efe8..56a1be936 100644
--- a/drivers/net/hns3/hns3_ethdev_vf.c
+++ b/drivers/net/hns3/hns3_ethdev_vf.c
@@ -543,6 +543,7 @@ hns3vf_dev_configure(struct rte_eth_dev *dev)
 
 	/* When RSS is not configured, redirect the packet queue 0 */
 	if ((uint32_t)mq_mode & ETH_MQ_RX_RSS_FLAG) {
+		conf->rxmode.offloads |= DEV_RX_OFFLOAD_RSS_HASH;
 		rss_conf = conf->rx_adv_conf.rss_conf;
 		if (rss_conf.rss_key == NULL) {
 			rss_conf.rss_key = rss_cfg->key;
-- 
2.20.1

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2020-07-24 12:53:48.790375842 +0100
+++ 0005-net-hns3-add-RSS-hash-offload-to-Rx-configuration.patch	2020-07-24 12:53:48.151003926 +0100
@@ -1,8 +1,10 @@
-From fdae939696a09b4010df004be06c491d9294e319 Mon Sep 17 00:00:00 2001
+From 36e0995b4d49f026bcb0eeb29c1e1d11b2b72179 Mon Sep 17 00:00:00 2001
 From: Lijun Ou <oulijun at huawei.com>
 Date: Fri, 22 May 2020 17:21:17 +0800
 Subject: [PATCH] net/hns3: add RSS hash offload to Rx configuration
 
+[ upstream commit fdae939696a09b4010df004be06c491d9294e319 ]
+
 Rx offload flag `DEV_RX_OFFLOAD_RSS_HASH` which can be used to
 enable/disable PMDs write to `rte_mbuf::hash::rss`. The hns3 PMD driver
 already can notify the validity of `rte_mbuf::hash:rss` to the
@@ -10,7 +12,6 @@
 
 Fixes: 19a3ca4c99cf ("net/hns3: add start/stop and configure operations")
 Fixes: c37ca66f2b27 ("net/hns3: support RSS")
-Cc: stable at dpdk.org
 
 Signed-off-by: Lijun Ou <oulijun at huawei.com>
 Signed-off-by: Wei Hu (Xavier) <xavier.huwei at huawei.com>
@@ -20,10 +21,10 @@
  2 files changed, 2 insertions(+)
 
 diff --git a/drivers/net/hns3/hns3_ethdev.c b/drivers/net/hns3/hns3_ethdev.c
-index 1c06b8ff1..33d7c5c7b 100644
+index dbe747f9d..85d432d36 100644
 --- a/drivers/net/hns3/hns3_ethdev.c
 +++ b/drivers/net/hns3/hns3_ethdev.c
-@@ -2312,6 +2312,7 @@ hns3_dev_configure(struct rte_eth_dev *dev)
+@@ -2228,6 +2228,7 @@ hns3_dev_configure(struct rte_eth_dev *dev)
  
  	/* When RSS is not configured, redirect the packet queue 0 */
  	if ((uint32_t)mq_mode & ETH_MQ_RX_RSS_FLAG) {
@@ -32,10 +33,10 @@
  		if (rss_conf.rss_key == NULL) {
  			rss_conf.rss_key = rss_cfg->key;
 diff --git a/drivers/net/hns3/hns3_ethdev_vf.c b/drivers/net/hns3/hns3_ethdev_vf.c
-index 904562e03..16d601270 100644
+index 251d0efe8..56a1be936 100644
 --- a/drivers/net/hns3/hns3_ethdev_vf.c
 +++ b/drivers/net/hns3/hns3_ethdev_vf.c
-@@ -784,6 +784,7 @@ hns3vf_dev_configure(struct rte_eth_dev *dev)
+@@ -543,6 +543,7 @@ hns3vf_dev_configure(struct rte_eth_dev *dev)
  
  	/* When RSS is not configured, redirect the packet queue 0 */
  	if ((uint32_t)mq_mode & ETH_MQ_RX_RSS_FLAG) {


More information about the stable mailing list