]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
net: mdio: fix resource leak in mdiobus_register_device()
authorBuday Csaba <buday.csaba@prolan.hu>
Sat, 8 Nov 2025 06:49:22 +0000 (07:49 +0100)
committerJakub Kicinski <kuba@kernel.org>
Tue, 11 Nov 2025 02:15:13 +0000 (18:15 -0800)
Fix a possible leak in mdiobus_register_device() when both a
reset-gpio and a reset-controller are present.
Clean up the already claimed reset-gpio, when the registration of
the reset-controller fails, so when an error code is returned, the
device retains its state before the registration attempt.

Link: https://lore.kernel.org/all/20251106144603.39053c81@kernel.org/
Fixes: 71dd6c0dff51 ("net: phy: add support for reset-controller")
Signed-off-by: Buday Csaba <buday.csaba@prolan.hu>
Link: https://patch.msgid.link/4b419377f8dd7d2f63f919d0f74a336c734f8fff.1762584481.git.buday.csaba@prolan.hu
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/phy/mdio_bus.c

index cad6ed3aa10b643ad63fac15bfe7551446c8dca1..4354241137d50d070883c0ad78b465f71114573b 100644 (file)
@@ -73,8 +73,11 @@ int mdiobus_register_device(struct mdio_device *mdiodev)
                        return err;
 
                err = mdiobus_register_reset(mdiodev);
-               if (err)
+               if (err) {
+                       gpiod_put(mdiodev->reset_gpio);
+                       mdiodev->reset_gpio = NULL;
                        return err;
+               }
 
                /* Assert the reset signal */
                mdio_device_reset(mdiodev, 1);