Patch "net: mdiobus: fix double put fwnode in the error path" has been added to the 6.0-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    net: mdiobus: fix double put fwnode in the error path

to the 6.0-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     net-mdiobus-fix-double-put-fwnode-in-the-error-path.patch
and it can be found in the queue-6.0 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit b8bc15a7b73fd6f8af71be6c87ef8ba35710d7b1
Author: Yang Yingliang <yangyingliang@xxxxxxxxxx>
Date:   Fri Dec 2 13:18:33 2022 +0800

    net: mdiobus: fix double put fwnode in the error path
    
    [ Upstream commit 165df24186ecea95705505627df3dacf5e7ff6bf ]
    
    If phy_device_register() or fwnode_mdiobus_phy_device_register()
    fail, phy_device_free() is called, the device refcount is decreased
    to 0, then fwnode_handle_put() will be called in phy_device_release(),
    but in the error path, fwnode_handle_put() has already been called,
    so set fwnode to NULL after fwnode_handle_put() in the error path to
    avoid double put.
    
    Fixes: cdde1560118f ("net: mdiobus: fix unbalanced node reference count")
    Reported-by: Zeng Heng <zengheng4@xxxxxxxxxx>
    Tested-by: Zeng Heng <zengheng4@xxxxxxxxxx>
    Signed-off-by: Yang Yingliang <yangyingliang@xxxxxxxxxx>
    Reviewed-by: Zeng Heng <zengheng4@xxxxxxxxxx>
    Tested-by: Zeng Heng <zengheng4@xxxxxxxxxx>
    Signed-off-by: David S. Miller <davem@xxxxxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/net/mdio/fwnode_mdio.c b/drivers/net/mdio/fwnode_mdio.c
index 403b07f8ec2c..2c47efdae73b 100644
--- a/drivers/net/mdio/fwnode_mdio.c
+++ b/drivers/net/mdio/fwnode_mdio.c
@@ -77,6 +77,7 @@ int fwnode_mdiobus_phy_device_register(struct mii_bus *mdio,
 	 */
 	rc = phy_device_register(phy);
 	if (rc) {
+		device_set_node(&phy->mdio.dev, NULL);
 		fwnode_handle_put(child);
 		return rc;
 	}
@@ -125,7 +126,8 @@ int fwnode_mdiobus_register_phy(struct mii_bus *bus,
 		/* All data is now stored in the phy struct, so register it */
 		rc = phy_device_register(phy);
 		if (rc) {
-			fwnode_handle_put(phy->mdio.dev.fwnode);
+			phy->mdio.dev.fwnode = NULL;
+			fwnode_handle_put(child);
 			goto clean_phy;
 		}
 	} else if (is_of_node(child)) {



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux