[PATCH net 1/2] amd-xgbe: fix comm_ownership mutex deadlock on SFP module removal

From: Stepan Svatenko

Date: Fri Aug 28 2026 - 05:36:57 EST


xgbe_phy_sfp_detect() acquires xgbe_phy_comm_lock (via
xgbe_phy_get_comm_ownership()) and holds it across calls that can end
up freeing the external PHY device:

xgbe_phy_sfp_detect()
xgbe_phy_get_comm_ownership() <- mutex_lock
xgbe_phy_sfp_mod_absent() / xgbe_phy_sfp_read_eeprom() (SFP changed)
xgbe_phy_free_phy_device()
phy_detach()
phy_suspend()
genphy_suspend()
xgbe_phy_mii_read_c22() <- mii_bus->read
xgbe_phy_get_comm_ownership() <- mutex_lock again

xgbe_phy_comm_lock is a plain, non-recursive mutex. phy_detach() ends
up calling back into this driver's own MDIO bus callbacks
(xgbe_phy_mii_read_c22()/xgbe_phy_mii_write_c22(), reached via
genphy_suspend() during phy_detach()), which independently acquire the
same lock, so the second acquisition deadlocks the task tearing down
the SFP module.

This is reliably reproducible by removing an SFP module while an
external PHY is attached: the removal handler hangs forever inside
xgbe_phy_free_phy_device(), confirmed via /proc/<pid>/stack and the
kernel hung-task detector (blocked 368s+). Reproduced on a SolidRun
Bedrock V3000 (AMD Ryzen Embedded V3C48).

There were two call paths into xgbe_phy_free_phy_device() while the
mutex was held: the module-absent path, and a second one inside
xgbe_phy_sfp_read_eeprom() when the EEPROM contents change (e.g. a
module swap).

Fix this by never calling xgbe_phy_free_phy_device() (directly, or via
xgbe_phy_sfp_mod_absent()) while holding xgbe_phy_comm_lock.
xgbe_phy_sfp_read_eeprom() no longer frees the PHY device itself; it
only records that the SFP changed. xgbe_phy_sfp_detect() releases the
mutex before calling xgbe_phy_sfp_mod_absent() or
xgbe_phy_free_phy_device(), and re-acquires it only around the
remaining raw I2C access in xgbe_phy_sfp_external_phy(). Neither
xgbe_phy_sfp_mod_absent() nor xgbe_phy_sfp_parse_eeprom()/
xgbe_phy_sfp_phy_settings() touch hardware directly, so they don't
need the mutex held.

Fixes: abf0a1c2b26a ("amd-xgbe: Add support for SFP+ modules")
Cc: stable@xxxxxxxxxxxxxxx
Signed-off-by: Stepan Svatenko <ssvatenko@xxxxxxxxxx>
Assisted-by: Claude Code:claude-sonnet-5 [Bash] [Read] [Edit]
---
drivers/net/ethernet/amd/xgbe/xgbe-phy-v2.c | 41 ++++++++++++++++-----
1 file changed, 32 insertions(+), 9 deletions(-)

diff --git a/drivers/net/ethernet/amd/xgbe/xgbe-phy-v2.c b/drivers/net/ethernet/amd/xgbe/xgbe-phy-v2.c
index 59a074ed312a..a264ec5bb085 100644
--- a/drivers/net/ethernet/amd/xgbe/xgbe-phy-v2.c
+++ b/drivers/net/ethernet/amd/xgbe/xgbe-phy-v2.c
@@ -1218,7 +1218,13 @@ static int xgbe_phy_sfp_read_eeprom(struct xgbe_prv_data *pdata)
goto put;
}

- /* Check for an added or changed SFP */
+ /* Check for an added or changed SFP. Freeing any existing external
+ * PHY device is deferred to the caller: xgbe_phy_free_phy_device()
+ * can end up calling back into this driver's MDIO read/write
+ * routines (via phy_detach() -> phy_suspend()), which take the
+ * comm ownership mutex themselves, and that mutex is held across
+ * this call.
+ */
if (memcmp(&phy_data->sfp_eeprom, &sfp_eeprom, sizeof(sfp_eeprom))) {
phy_data->sfp_changed = 1;

@@ -1226,8 +1232,6 @@ static int xgbe_phy_sfp_read_eeprom(struct xgbe_prv_data *pdata)
xgbe_phy_sfp_eeprom_info(pdata, &sfp_eeprom);

memcpy(&phy_data->sfp_eeprom, &sfp_eeprom, sizeof(sfp_eeprom));
-
- xgbe_phy_free_phy_device(pdata);
} else {
phy_data->sfp_changed = 0;
}
@@ -1296,26 +1300,45 @@ static void xgbe_phy_sfp_detect(struct xgbe_prv_data *pdata)
/* Read the SFP signals and check for module presence */
xgbe_phy_sfp_signals(pdata);
if (phy_data->sfp_mod_absent) {
+ /* xgbe_phy_sfp_mod_absent() calls xgbe_phy_free_phy_device(),
+ * which can call back into this driver's MDIO read/write
+ * routines via phy_detach() -> phy_suspend(). Those routines
+ * take the comm ownership mutex themselves, so it must be
+ * released before making this call.
+ */
+ xgbe_phy_put_comm_ownership(pdata);
xgbe_phy_sfp_mod_absent(pdata);
- goto put;
+ goto settings;
}

ret = xgbe_phy_sfp_read_eeprom(pdata);
+ xgbe_phy_put_comm_ownership(pdata);
if (ret) {
/* Treat any error as if there isn't an SFP plugged in */
xgbe_phy_sfp_reset(phy_data);
xgbe_phy_sfp_mod_absent(pdata);
- goto put;
+ goto settings;
}

+ /* Same reasoning as above: this must run without the comm
+ * ownership mutex held.
+ */
+ if (phy_data->sfp_changed)
+ xgbe_phy_free_phy_device(pdata);
+
xgbe_phy_sfp_parse_eeprom(pdata);

- xgbe_phy_sfp_external_phy(pdata);
+ /* Re-acquire ownership for the external PHY access below; it talks
+ * to the SFP over I2C directly and needs the mutex held again.
+ */
+ ret = xgbe_phy_get_comm_ownership(pdata);
+ if (!ret) {
+ xgbe_phy_sfp_external_phy(pdata);
+ xgbe_phy_put_comm_ownership(pdata);
+ }

-put:
+settings:
xgbe_phy_sfp_phy_settings(pdata);
-
- xgbe_phy_put_comm_ownership(pdata);
}

static int xgbe_phy_module_eeprom(struct xgbe_prv_data *pdata,
--
2.55.0