diff options
author | Joe Hattori <[email protected]> | 2024-08-06 10:13:27 +0900 |
---|---|---|
committer | Jakub Kicinski <[email protected]> | 2024-08-07 20:13:13 -0700 |
commit | e3862093ee93fcfbdadcb7957f5f8974fffa806a (patch) | |
tree | 7cd57611ee4b0c23f31766f5a1d4dc0c2f099a02 /scripts/bpf_doc.py | |
parent | d27a835f41d947f62e6a95e89ba523299c9e6437 (diff) |
net: dsa: bcm_sf2: Fix a possible memory leak in bcm_sf2_mdio_register()
bcm_sf2_mdio_register() calls of_phy_find_device() and then
phy_device_remove() in a loop to remove existing PHY devices.
of_phy_find_device() eventually calls bus_find_device(), which calls
get_device() on the returned struct device * to increment the refcount.
The current implementation does not decrement the refcount, which causes
memory leak.
This commit adds the missing phy_device_free() call to decrement the
refcount via put_device() to balance the refcount.
Fixes: 771089c2a485 ("net: dsa: bcm_sf2: Ensure that MDIO diversion is used")
Signed-off-by: Joe Hattori <[email protected]>
Tested-by: Florian Fainelli <[email protected]>
Reviewed-by: Florian Fainelli <[email protected]>
Link: https://patch.msgid.link/[email protected]
Signed-off-by: Jakub Kicinski <[email protected]>
Diffstat (limited to 'scripts/bpf_doc.py')
0 files changed, 0 insertions, 0 deletions