patch 'net/ice: fix adapter stopped on device start failure' has been queued to stable release 25.11.3
Kevin Traynor
ktraynor at redhat.com
Thu Jul 30 11:16:16 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/6f29fa8df0d4ca3a0056820b9bb4ad4ff33d45c9
Thanks.
Kevin
---
>From 6f29fa8df0d4ca3a0056820b9bb4ad4ff33d45c9 Mon Sep 17 00:00:00 2001
From: Ciara Loftus <ciara.loftus at intel.com>
Date: Thu, 9 Jul 2026 11:25:56 +0000
Subject: [PATCH] net/ice: fix adapter stopped on device start failure
[ upstream commit e508a45a7fe569806de75f0c306ed5e49c5d86ae ]
Currently, `adapter_stopped` is cleared during device startup but is not
restored to true if startup fails partway through. Reset
`adapter_stopped` to true on the device startup error path to accurately
reflect device state after a failed start.
Fixes: 437dbd2fd428 ("net/ice: support 1PPS")
Signed-off-by: Ciara Loftus <ciara.loftus at intel.com>
Acked-by: Bruce Richardson <bruce.richardson at intel.com>
---
drivers/net/intel/ice/ice_ethdev.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/net/intel/ice/ice_ethdev.c b/drivers/net/intel/ice/ice_ethdev.c
index e4029e2b2f..eec7cb3b40 100644
--- a/drivers/net/intel/ice/ice_ethdev.c
+++ b/drivers/net/intel/ice/ice_ethdev.c
@@ -4506,4 +4506,6 @@ tx_err:
ice_tx_queue_stop(dev, i);
+ pf->adapter_stopped = true;
+
return -EIO;
}
--
2.55.0
---
Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- - 2026-07-30 10:16:02.586195040 +0100
+++ 0037-net-ice-fix-adapter-stopped-on-device-start-failure.patch 2026-07-30 10:16:01.477990782 +0100
@@ -1 +1 @@
-From e508a45a7fe569806de75f0c306ed5e49c5d86ae Mon Sep 17 00:00:00 2001
+From 6f29fa8df0d4ca3a0056820b9bb4ad4ff33d45c9 Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit e508a45a7fe569806de75f0c306ed5e49c5d86ae ]
+
@@ -12 +13,0 @@
-Cc: stable at dpdk.org
@@ -21 +22 @@
-index 8db5168b88..76b8ff0a72 100644
+index e4029e2b2f..eec7cb3b40 100644
@@ -24 +25 @@
-@@ -4583,4 +4583,6 @@ tx_err:
+@@ -4506,4 +4506,6 @@ tx_err:
More information about the stable
mailing list