patch 'net/qede: fix RSS indirection table initialization' has been queued to stable release 20.11.9
luca.boccassi at gmail.com
luca.boccassi at gmail.com
Thu Jun 15 03:32:44 CEST 2023
Hi,
FYI, your patch has been queued to stable release 20.11.9
Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 06/17/23. 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.
Queued patches are on a temporary branch at:
https://github.com/bluca/dpdk-stable
This queued commit can be viewed at:
https://github.com/bluca/dpdk-stable/commit/08804e2e0aa7ab01464392b57b90c3f5fa10ea0a
Thanks.
Luca Boccassi
---
>From 08804e2e0aa7ab01464392b57b90c3f5fa10ea0a Mon Sep 17 00:00:00 2001
From: Devendra Singh Rawat <dsinghrawat at marvell.com>
Date: Thu, 25 May 2023 19:24:21 +0530
Subject: [PATCH] net/qede: fix RSS indirection table initialization
[ upstream commit 189183f4d7f2a22b9335ff8eede1c763bb356e5c ]
RSS indirection table was not updated for VF ports during RSS hash
update, this resulted in device start failure.
This fix sets update RSS indirection table in VFPF channel request,
sent for updating RSS hash for VF.
Fixes: 7ab35bf6b97b ("net/qede: fix RSS")
Signed-off-by: Devendra Singh Rawat <dsinghrawat at marvell.com>
Signed-off-by: Alok Prasad <palok at marvell.com>
---
drivers/net/qede/qede_ethdev.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/net/qede/qede_ethdev.c b/drivers/net/qede/qede_ethdev.c
index 02a1d8945a..eef04fcda6 100644
--- a/drivers/net/qede/qede_ethdev.c
+++ b/drivers/net/qede/qede_ethdev.c
@@ -2148,6 +2148,7 @@ int qede_rss_hash_update(struct rte_eth_dev *eth_dev,
rss_params.rss_enable = 1;
}
+ rss_params.update_rss_ind_table = 1;
rss_params.update_rss_config = 1;
/* tbl_size has to be set with capabilities */
rss_params.rss_table_size_log = 7;
--
2.39.2
---
Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- - 2023-06-15 01:56:37.194003224 +0100
+++ 0049-net-qede-fix-RSS-indirection-table-initialization.patch 2023-06-15 01:56:34.687543926 +0100
@@ -1 +1 @@
-From 189183f4d7f2a22b9335ff8eede1c763bb356e5c Mon Sep 17 00:00:00 2001
+From 08804e2e0aa7ab01464392b57b90c3f5fa10ea0a Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit 189183f4d7f2a22b9335ff8eede1c763bb356e5c ]
+
@@ -12 +13,0 @@
-Cc: stable at dpdk.org
@@ -21 +22 @@
-index a4923670d6..22cd470646 100644
+index 02a1d8945a..eef04fcda6 100644
@@ -24 +25 @@
-@@ -2142,6 +2142,7 @@ int qede_rss_hash_update(struct rte_eth_dev *eth_dev,
+@@ -2148,6 +2148,7 @@ int qede_rss_hash_update(struct rte_eth_dev *eth_dev,
More information about the stable
mailing list