patch 'net/gve: preserve ring size bounds on reset' has been queued to stable release 25.11.3
Kevin Traynor
ktraynor at redhat.com
Thu Jul 30 11:16:28 CEST 2026
Hi,
FYI, your patch has been queued to stable release 25.11.3
Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 08/04/26. 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/kevintraynor/dpdk-stable
This queued commit can be viewed at:
https://github.com/kevintraynor/dpdk-stable/commit/9d99c728e833d73a51a1396868dfc99b5944cfca
Thanks.
Kevin
---
>From 9d99c728e833d73a51a1396868dfc99b5944cfca Mon Sep 17 00:00:00 2001
From: Joshua Washington <joshwash at google.com>
Date: Wed, 8 Jul 2026 21:07:36 -0700
Subject: [PATCH] net/gve: preserve ring size bounds on reset
[ upstream commit 7b12f14d75ea8f6d53a64c5ccafcf7dd6d4e562c ]
On device reset, GVE skips describe_device functionality, as the device
is not expected to change on a reset. However, before skipping the
describe_device functionality, GVE still sets the ring sizes to their
default values. This effectively removes the ability to create queues
with higher-than-default descriptor counts after a reset.
Fix this behavior by only setting the default ring size bounds is
describe_device is being executed.
Fixes: 1bf64edce3c4 ("net/gve: add reset path")
Signed-off-by: Joshua Washington <joshwash at google.com>
Reviewed-by: Jasper Tran O'Leary <jtranoleary at google.com>
---
drivers/net/gve/gve_ethdev.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/net/gve/gve_ethdev.c b/drivers/net/gve/gve_ethdev.c
index 67616c93c5..4f69f386b9 100644
--- a/drivers/net/gve/gve_ethdev.c
+++ b/drivers/net/gve/gve_ethdev.c
@@ -1228,10 +1228,10 @@ gve_init_priv(struct gve_priv *priv, bool skip_describe_device)
}
- /* Set default descriptor counts */
- gve_set_default_ring_size_bounds(priv);
-
if (skip_describe_device)
goto setup_device;
+ /* Set default descriptor counts */
+ gve_set_default_ring_size_bounds(priv);
+
/* Get the initial information we need from the device */
err = gve_adminq_describe_device(priv);
--
2.55.0
---
Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- - 2026-07-30 10:16:02.905374015 +0100
+++ 0049-net-gve-preserve-ring-size-bounds-on-reset.patch 2026-07-30 10:16:01.484293831 +0100
@@ -1 +1 @@
-From 7b12f14d75ea8f6d53a64c5ccafcf7dd6d4e562c Mon Sep 17 00:00:00 2001
+From 9d99c728e833d73a51a1396868dfc99b5944cfca Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit 7b12f14d75ea8f6d53a64c5ccafcf7dd6d4e562c ]
+
@@ -16 +17,0 @@
-Cc: stable at dpdk.org
@@ -25 +26 @@
-index f73784a109..c990920a4d 100644
+index 67616c93c5..4f69f386b9 100644
@@ -28 +29 @@
-@@ -1580,10 +1580,10 @@ gve_init_priv(struct gve_priv *priv, bool skip_describe_device)
+@@ -1228,10 +1228,10 @@ gve_init_priv(struct gve_priv *priv, bool skip_describe_device)
More information about the stable
mailing list