[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20230821023928.3324283-1-peng.fan@oss.nxp.com>
Date: Mon, 21 Aug 2023 10:39:27 +0800
From: "Peng Fan (OSS)" <peng.fan@....nxp.com>
To: robh+dt@...nel.org, krzysztof.kozlowski+dt@...aro.org,
conor+dt@...nel.org, frowand.list@...il.com,
andriy.shevchenko@...ux.intel.com, devicetree@...r.kernel.org,
linux-kernel@...r.kernel.org, gregkh@...uxfoundation.org,
linux@...linux.org.uk, arnd@...db.de, linus.walleij@...aro.org,
jeremy.kerr@...onical.com
Cc: isaacmanjarres@...gle.com, hdegoede@...hat.com,
ulf.hansson@...aro.org, rafael@...nel.org,
grant.likely@...retlab.ca, Peng Fan <peng.fan@....com>
Subject: [PATCH V3 1/2] amba: bus: fix refcount leak
From: Peng Fan <peng.fan@....com>
commit 5de1540b7bc4 ("drivers/amba: create devices from device tree")
increases the refcount of of_node, but not releases it in
amba_device_release, so there is refcount leak. By using of_node_put
to avoid refcount leak.
Fixes: 5de1540b7bc4 ("drivers/amba: create devices from device tree")
Signed-off-by: Peng Fan <peng.fan@....com>
---
Note: Code inspection, not tested.
V3:
Move this out from patch V2 1/1
drivers/amba/bus.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/amba/bus.c b/drivers/amba/bus.c
index ce88af9eb562..09e72967b8ab 100644
--- a/drivers/amba/bus.c
+++ b/drivers/amba/bus.c
@@ -528,6 +528,7 @@ static void amba_device_release(struct device *dev)
{
struct amba_device *d = to_amba_device(dev);
+ of_node_put(d->dev.of_node);
if (d->res.parent)
release_resource(&d->res);
mutex_destroy(&d->periphid_lock);
--
2.37.1
Powered by blists - more mailing lists