projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6c8aee0
)
clk: st: Fix memory leak in st_of_quadfs_setup()
author
Xiu Jianfeng
<xiujianfeng@huawei.com>
Tue, 22 Nov 2022 13:36:14 +0000
(21:36 +0800)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Sat, 31 Dec 2022 12:14:43 +0000
(13:14 +0100)
[ Upstream commit
cfd3ffb36f0d566846163118651d868e607300ba
]
If st_clk_register_quadfs_pll() fails, @lock should be freed before goto
@err_exit, otherwise will cause meory leak issue, fix it.
Signed-off-by: Xiu Jianfeng <xiujianfeng@huawei.com>
Link:
https://lore.kernel.org/r/20221122133614.184910-1-xiujianfeng@huawei.com
Reviewed-by: Patrice Chotard <patrice.chotard@foss.st.com>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/clk/st/clkgen-fsyn.c
patch
|
blob
|
history
diff --git
a/drivers/clk/st/clkgen-fsyn.c
b/drivers/clk/st/clkgen-fsyn.c
index
164285d
..
ba18e58
100644
(file)
--- a/
drivers/clk/st/clkgen-fsyn.c
+++ b/
drivers/clk/st/clkgen-fsyn.c
@@
-1008,9
+1008,10
@@
static void __init st_of_quadfs_setup(struct device_node *np,
clk = st_clk_register_quadfs_pll(pll_name, clk_parent_name, datac->data,
reg, lock);
- if (IS_ERR(clk))
+ if (IS_ERR(clk)) {
+ kfree(lock);
goto err_exit;
- else
+
}
else
pr_debug("%s: parent %s rate %u\n",
__clk_get_name(clk),
__clk_get_name(clk_get_parent(clk)),