linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] clk: versatile: clk-icst: use after free on error path
@ 2021-11-17  7:26 Dan Carpenter
  2021-11-21 23:37 ` Linus Walleij
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Dan Carpenter @ 2021-11-17  7:26 UTC (permalink / raw)
  To: Linus Walleij, Rob Herring
  Cc: Michael Turquette, Stephen Boyd, linux-arm-kernel, linux-clk,
	kernel-janitors

This frees "name" and then tries to display in as part of the error
message on the next line.  Swap the order.

Fixes: 1b2189f3aa50 ("clk: versatile: clk-icst: Ensure clock names are unique")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
---
 drivers/clk/versatile/clk-icst.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/clk/versatile/clk-icst.c b/drivers/clk/versatile/clk-icst.c
index d52f976dc875..d5cb372f0901 100644
--- a/drivers/clk/versatile/clk-icst.c
+++ b/drivers/clk/versatile/clk-icst.c
@@ -543,8 +543,8 @@ static void __init of_syscon_icst_setup(struct device_node *np)
 
 	regclk = icst_clk_setup(NULL, &icst_desc, name, parent_name, map, ctype);
 	if (IS_ERR(regclk)) {
-		kfree(name);
 		pr_err("error setting up syscon ICST clock %s\n", name);
+		kfree(name);
 		return;
 	}
 	of_clk_add_provider(np, of_clk_src_simple_get, regclk);
-- 
2.20.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] clk: versatile: clk-icst: use after free on error path
  2021-11-17  7:26 [PATCH] clk: versatile: clk-icst: use after free on error path Dan Carpenter
@ 2021-11-21 23:37 ` Linus Walleij
  2021-12-07 20:24 ` Stephen Boyd
  2021-12-07 20:25 ` Stephen Boyd
  2 siblings, 0 replies; 4+ messages in thread
From: Linus Walleij @ 2021-11-21 23:37 UTC (permalink / raw)
  To: Dan Carpenter
  Cc: Rob Herring, Michael Turquette, Stephen Boyd, linux-arm-kernel,
	linux-clk, kernel-janitors

On Wed, Nov 17, 2021 at 8:26 AM Dan Carpenter <dan.carpenter@oracle.com> wrote:

> This frees "name" and then tries to display in as part of the error
> message on the next line.  Swap the order.
>
> Fixes: 1b2189f3aa50 ("clk: versatile: clk-icst: Ensure clock names are unique")
> Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>

Reviewed-by: Linus Walleij <linus.walleij@linaro.org>

Yours,
Linus Walleij

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] clk: versatile: clk-icst: use after free on error path
  2021-11-17  7:26 [PATCH] clk: versatile: clk-icst: use after free on error path Dan Carpenter
  2021-11-21 23:37 ` Linus Walleij
@ 2021-12-07 20:24 ` Stephen Boyd
  2021-12-07 20:25 ` Stephen Boyd
  2 siblings, 0 replies; 4+ messages in thread
From: Stephen Boyd @ 2021-12-07 20:24 UTC (permalink / raw)
  To: Dan Carpenter, Linus Walleij, Rob Herring
  Cc: Michael Turquette, linux-arm-kernel, linux-clk, kernel-janitors

Quoting Dan Carpenter (2021-11-16 23:26:05)
> This frees "name" and then tries to display in as part of the error
> message on the next line.  Swap the order.
> 
> Fixes: 1b2189f3aa50 ("clk: versatile: clk-icst: Ensure clock names are unique")
> Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
> ---

Applied to clk-next

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] clk: versatile: clk-icst: use after free on error path
  2021-11-17  7:26 [PATCH] clk: versatile: clk-icst: use after free on error path Dan Carpenter
  2021-11-21 23:37 ` Linus Walleij
  2021-12-07 20:24 ` Stephen Boyd
@ 2021-12-07 20:25 ` Stephen Boyd
  2 siblings, 0 replies; 4+ messages in thread
From: Stephen Boyd @ 2021-12-07 20:25 UTC (permalink / raw)
  To: Dan Carpenter, Linus Walleij, Rob Herring
  Cc: Michael Turquette, linux-arm-kernel, linux-clk, kernel-janitors

Quoting Dan Carpenter (2021-11-16 23:26:05)
> This frees "name" and then tries to display in as part of the error
> message on the next line.  Swap the order.
> 
> Fixes: 1b2189f3aa50 ("clk: versatile: clk-icst: Ensure clock names are unique")
> Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
> ---

Actually, applied to clk-fixes

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-12-07 20:26 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-11-17  7:26 [PATCH] clk: versatile: clk-icst: use after free on error path Dan Carpenter
2021-11-21 23:37 ` Linus Walleij
2021-12-07 20:24 ` Stephen Boyd
2021-12-07 20:25 ` Stephen Boyd

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).