patch 'net/e1000/base: propagate PHY control register write error' has been queued to stable release 25.11.3

Kevin Traynor ktraynor at redhat.com
Thu Jul 23 19:15:27 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 07/27/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/d83f8c621bf8bb6bdcd9bfda357b41446bc9855f

Thanks.

Kevin

---
>From d83f8c621bf8bb6bdcd9bfda357b41446bc9855f Mon Sep 17 00:00:00 2001
From: Dima Ruinskiy <dima.ruinskiy at intel.com>
Date: Wed, 20 May 2026 12:52:45 +0000
Subject: [PATCH] net/e1000/base: propagate PHY control register write error

[ upstream commit f2335d90a7c16d9909e9666d9a7eb4cad4c3d7b5 ]

During HV PHY workaround handling, a failure writing to the PHY control
register was silently discarded rather than returned to the caller. Add
the missing early return so the error is correctly propagated.

Fixes: 5a32a257f957 ("e1000: more NICs in base driver")

Signed-off-by: Dima Ruinskiy <dima.ruinskiy at intel.com>
Signed-off-by: Ciara Loftus <ciara.loftus at intel.com>
Acked-by: Bruce Richardson <bruce.richardson at intel.com>
---
 drivers/net/intel/e1000/base/e1000_ich8lan.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/net/intel/e1000/base/e1000_ich8lan.c b/drivers/net/intel/e1000/base/e1000_ich8lan.c
index e62847fb4e..0290a7dcb4 100644
--- a/drivers/net/intel/e1000/base/e1000_ich8lan.c
+++ b/drivers/net/intel/e1000/base/e1000_ich8lan.c
@@ -2697,4 +2697,6 @@ STATIC s32 e1000_hv_phy_workarounds_ich8lan(struct e1000_hw *hw)
 			ret_val = hw->phy.ops.write_reg(hw, PHY_CONTROL,
 							0x3140);
+			if (ret_val)
+				return ret_val;
 		}
 	}
-- 
2.55.0

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2026-07-23 17:58:00.507218680 +0100
+++ 0064-net-e1000-base-propagate-PHY-control-register-write-.patch	2026-07-23 17:57:58.682918555 +0100
@@ -1 +1 @@
-From f2335d90a7c16d9909e9666d9a7eb4cad4c3d7b5 Mon Sep 17 00:00:00 2001
+From d83f8c621bf8bb6bdcd9bfda357b41446bc9855f Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit f2335d90a7c16d9909e9666d9a7eb4cad4c3d7b5 ]
+
@@ -11 +12,0 @@
-Cc: stable at dpdk.org



More information about the stable mailing list