[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20240515202915.16214-3-shresthprasad7@gmail.com>
Date: Thu, 16 May 2024 01:59:17 +0530
From: Shresth Prasad <shresthprasad7@...il.com>
To: robh@...nel.org,
saravanak@...gle.com
Cc: devicetree@...r.kernel.org,
linux-kernel@...r.kernel.org,
skhan@...uxfoundation.org,
javier.carrasco.cruz@...il.com,
julia.lawall@...ia.fr,
Shresth Prasad <shresthprasad7@...il.com>
Subject: [PATCH][next] of: property: Remove calls to of_node_put
Add __free cleanup handler to some variable initialisations, which
ensures that the resource is freed as soon as the variable goes out of
scope. Thus removing the need to manually free up the resource using
of_node_put.
Suggested-by: Julia Lawall <julia.lawall@...ia.fr>
Signed-off-by: Shresth Prasad <shresthprasad7@...il.com>
---
I had submitted a similar patch a couple weeks ago addressing the same
issue, but as it turns out I wasn't thorough enough and had left a couple
instances.
I hope this isn't too big an issue.
---
drivers/of/property.c | 27 +++++++++++----------------
1 file changed, 11 insertions(+), 16 deletions(-)
diff --git a/drivers/of/property.c b/drivers/of/property.c
index 17b294e16c56..96a74f6a8d64 100644
--- a/drivers/of/property.c
+++ b/drivers/of/property.c
@@ -773,15 +773,14 @@ EXPORT_SYMBOL(of_graph_get_port_parent);
struct device_node *of_graph_get_remote_port_parent(
const struct device_node *node)
{
- struct device_node *np, *pp;
+ struct device_node *pp;
/* Get remote endpoint node. */
- np = of_graph_get_remote_endpoint(node);
+ struct device_node *np __free(device_node) =
+ of_graph_get_remote_endpoint(node);
pp = of_graph_get_port_parent(np);
- of_node_put(np);
-
return pp;
}
EXPORT_SYMBOL(of_graph_get_remote_port_parent);
@@ -835,17 +834,18 @@ EXPORT_SYMBOL(of_graph_get_endpoint_count);
struct device_node *of_graph_get_remote_node(const struct device_node *node,
u32 port, u32 endpoint)
{
- struct device_node *endpoint_node, *remote;
+ struct device_node *endpoint_node __free(device_node) =
+ of_graph_get_endpoint_by_regs(node, port, endpoint);
+
+ struct device_node *remote __free(device_node) =
+ of_graph_get_remote_port_parent(endpoint_node);
- endpoint_node = of_graph_get_endpoint_by_regs(node, port, endpoint);
if (!endpoint_node) {
pr_debug("no valid endpoint (%d, %d) for node %pOF\n",
port, endpoint, node);
return NULL;
}
- remote = of_graph_get_remote_port_parent(endpoint_node);
- of_node_put(endpoint_node);
if (!remote) {
pr_debug("no valid remote node\n");
return NULL;
@@ -853,7 +853,6 @@ struct device_node *of_graph_get_remote_node(const struct device_node *node,
if (!of_device_is_available(remote)) {
pr_debug("not available for remote node\n");
- of_node_put(remote);
return NULL;
}
@@ -1064,19 +1063,15 @@ static void of_link_to_phandle(struct device_node *con_np,
struct device_node *sup_np,
u8 flags)
{
- struct device_node *tmp_np = of_node_get(sup_np);
+ struct device_node *tmp_np __free(device_node) = of_node_get(sup_np);
/* Check that sup_np and its ancestors are available. */
while (tmp_np) {
- if (of_fwnode_handle(tmp_np)->dev) {
- of_node_put(tmp_np);
+ if (of_fwnode_handle(tmp_np)->dev)
break;
- }
- if (!of_device_is_available(tmp_np)) {
- of_node_put(tmp_np);
+ if (!of_device_is_available(tmp_np))
return;
- }
tmp_np = of_get_next_parent(tmp_np);
}
--
2.45.1
Powered by blists - more mailing lists