• Russell King's avatar
    net: dsa: fix of_mdio_find_bus() device refcount leak · e496ae69
    Russell King authored
    Current users of of_mdio_find_bus() leak a struct device refcount, as
    they fail to clean up the reference obtained inside class_find_device().
    
    Fix the DSA code to properly refcount the returned MDIO bus by:
    1. taking a reference on the struct device whenever we assign it to
       pd->chip[x].host_dev.
    2. dropping the reference when we overwrite the existing reference.
    3. dropping the reference when we free the data structure.
    4. dropping the initial reference we obtained after setting up the
       platform data structure, or on failure.
    
    In step 2 above, where we obtain a new MDIO bus, there is no need to
    take a reference on it as we would only have to drop it immediately
    after assignment again, iow:
    
    	put_device(cd->host_dev);	/* drop original assignment ref */
    	cd->host_dev = get_device(&mdio_bus_switch->dev); /* get our ref */
    	put_device(&mdio_bus_switch->dev); /* drop of_mdio_find_bus ref */
    Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
    Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
    e496ae69
dsa.c 22.2 KB