patch 'net/ice: fix adapter stopped on device start failure' has been queued to stable release 24.11.7

luca.boccassi at gmail.com luca.boccassi at gmail.com
Mon Jul 13 19:17:43 CEST 2026


Hi,

FYI, your patch has been queued to stable release 24.11.7

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/15/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/bluca/dpdk-stable

This queued commit can be viewed at:
https://github.com/bluca/dpdk-stable/commit/4d77f705bd906f78e11388f0059a418bdc7ae888

Thanks.

Luca Boccassi

---
>From 4d77f705bd906f78e11388f0059a418bdc7ae888 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/ice/ice_ethdev.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/net/ice/ice_ethdev.c b/drivers/net/ice/ice_ethdev.c
index 1d7fac0435..63127d2c7f 100644
--- a/drivers/net/ice/ice_ethdev.c
+++ b/drivers/net/ice/ice_ethdev.c
@@ -4056,6 +4056,8 @@ tx_err:
 	for (i = 0; i < nb_txq; i++)
 		ice_tx_queue_stop(dev, i);
 
+	pf->adapter_stopped = true;
+
 	return -EIO;
 }
 
-- 
2.47.3

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2026-07-13 18:17:05.721672457 +0100
+++ 0003-net-ice-fix-adapter-stopped-on-device-start-failure.patch	2026-07-13 18:17:05.570282760 +0100
@@ -1 +1 @@
-From e508a45a7fe569806de75f0c306ed5e49c5d86ae Mon Sep 17 00:00:00 2001
+From 4d77f705bd906f78e11388f0059a418bdc7ae888 Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit e508a45a7fe569806de75f0c306ed5e49c5d86ae ]
+
@@ -12 +13,0 @@
-Cc: stable at dpdk.org
@@ -17 +18 @@
- drivers/net/intel/ice/ice_ethdev.c | 2 ++
+ drivers/net/ice/ice_ethdev.c | 2 ++
@@ -20,5 +21,5 @@
-diff --git a/drivers/net/intel/ice/ice_ethdev.c b/drivers/net/intel/ice/ice_ethdev.c
-index 8db5168b88..76b8ff0a72 100644
---- a/drivers/net/intel/ice/ice_ethdev.c
-+++ b/drivers/net/intel/ice/ice_ethdev.c
-@@ -4582,6 +4582,8 @@ tx_err:
+diff --git a/drivers/net/ice/ice_ethdev.c b/drivers/net/ice/ice_ethdev.c
+index 1d7fac0435..63127d2c7f 100644
+--- a/drivers/net/ice/ice_ethdev.c
++++ b/drivers/net/ice/ice_ethdev.c
+@@ -4056,6 +4056,8 @@ tx_err:


More information about the stable mailing list