The function pll6_bypassed() calls of_parse_phandle_with_args()
but never calls of_node_put() to release the reference, causing
a memory leak.
Fix this by adding proper cleanup calls on all exit paths.
Fixes: 3cc48976e9763 ("clk: imx6q: handle ENET PLL bypass")
Signed-off-by: Felix Gu <ustc.gu@gmail.com>
---
v3 changes:
- Fix Frank's comment, add check before calling of_node_put().
---
drivers/clk/imx/clk-imx6q.c | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/drivers/clk/imx/clk-imx6q.c b/drivers/clk/imx/clk-imx6q.c
index bf4c1d9c9928..ba696cf34fe3 100644
--- a/drivers/clk/imx/clk-imx6q.c
+++ b/drivers/clk/imx/clk-imx6q.c
@@ -238,8 +238,11 @@ static bool pll6_bypassed(struct device_node *node)
return false;
if (clkspec.np == node &&
- clkspec.args[0] == IMX6QDL_PLL6_BYPASS)
+ clkspec.args[0] == IMX6QDL_PLL6_BYPASS) {
+ of_node_put(clkspec.np);
break;
+ }
+ of_node_put(clkspec.np);
}
/* PLL6 bypass is not part of the assigned clock list */
@@ -249,6 +252,9 @@ static bool pll6_bypassed(struct device_node *node)
ret = of_parse_phandle_with_args(node, "assigned-clock-parents",
"#clock-cells", index, &clkspec);
+ if (!ret)
+ of_node_put(clkspec.np);
+
if (clkspec.args[0] != IMX6QDL_CLK_PLL6)
return true;
--
2.43.0
On Tue, Feb 03, 2026 at 10:07:57PM +0800, Felix Gu wrote:
> The function pll6_bypassed() calls of_parse_phandle_with_args()
> but never calls of_node_put() to release the reference, causing
> a memory leak.
>
> Fix this by adding proper cleanup calls on all exit paths.
>
> Fixes: 3cc48976e9763 ("clk: imx6q: handle ENET PLL bypass")
> Signed-off-by: Felix Gu <ustc.gu@gmail.com>
> ---
Reviewed-by: Frank Li <Frank.Li@nxp.com>
> v3 changes:
> - Fix Frank's comment, add check before calling of_node_put().
> ---
> drivers/clk/imx/clk-imx6q.c | 8 +++++++-
> 1 file changed, 7 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/clk/imx/clk-imx6q.c b/drivers/clk/imx/clk-imx6q.c
> index bf4c1d9c9928..ba696cf34fe3 100644
> --- a/drivers/clk/imx/clk-imx6q.c
> +++ b/drivers/clk/imx/clk-imx6q.c
> @@ -238,8 +238,11 @@ static bool pll6_bypassed(struct device_node *node)
> return false;
>
> if (clkspec.np == node &&
> - clkspec.args[0] == IMX6QDL_PLL6_BYPASS)
> + clkspec.args[0] == IMX6QDL_PLL6_BYPASS) {
> + of_node_put(clkspec.np);
> break;
> + }
> + of_node_put(clkspec.np);
> }
>
> /* PLL6 bypass is not part of the assigned clock list */
> @@ -249,6 +252,9 @@ static bool pll6_bypassed(struct device_node *node)
> ret = of_parse_phandle_with_args(node, "assigned-clock-parents",
> "#clock-cells", index, &clkspec);
>
> + if (!ret)
> + of_node_put(clkspec.np);
> +
> if (clkspec.args[0] != IMX6QDL_CLK_PLL6)
> return true;
>
>
> --
> 2.43.0
>
© 2016 - 2026 Red Hat, Inc.