[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20240917211325.639765-1-mikisabate@gmail.com>
Date: Tue, 17 Sep 2024 23:13:25 +0200
From: Miquel Sabaté Solà <mikisabate@...il.com>
To: rafael@...nel.org
Cc: daniel.lezcano@...aro.org,
linux-arm-msm@...r.kernel.org,
linux-pm@...r.kernel.org,
linux-kernel@...r.kernel.org,
Miquel Sabaté Solà <mikisabate@...il.com>
Subject: [PATCH] cpuidle: Fix reference count on CPU node
For the qcom-spm driver, an early return was not calling the proper
of_node_put call for a previously acquired device node.
Signed-off-by: Miquel Sabaté Solà <mikisabate@...il.com>
---
drivers/cpuidle/cpuidle-qcom-spm.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/drivers/cpuidle/cpuidle-qcom-spm.c b/drivers/cpuidle/cpuidle-qcom-spm.c
index 1fc9968eae19..d3608f47d02b 100644
--- a/drivers/cpuidle/cpuidle-qcom-spm.c
+++ b/drivers/cpuidle/cpuidle-qcom-spm.c
@@ -96,8 +96,10 @@ static int spm_cpuidle_register(struct device *cpuidle_dev, int cpu)
return -ENODEV;
saw_node = of_parse_phandle(cpu_node, "qcom,saw", 0);
- if (!saw_node)
+ if (!saw_node) {
+ of_node_put(cpu_node);
return -ENODEV;
+ }
pdev = of_find_device_by_node(saw_node);
of_node_put(saw_node);
--
2.46.0
Powered by blists - more mailing lists