diff options
author | Marc Zyngier <maz@kernel.org> | 2020-05-05 15:09:53 +0100 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2020-05-05 12:12:00 -0700 |
commit | 018d4671b9bbd4a5c55cf6eab3e1dbc70a50b66e (patch) | |
tree | a96b8b60c1687d35586a6729a470d9cc3254a0ef /drivers/clk/clk.c | |
parent | ca6df49d62d7cc4c1653a4d9b1ecc61ecd530e02 (diff) | |
download | linux-018d4671b9bbd4a5c55cf6eab3e1dbc70a50b66e.tar.gz |
clk: Unlink clock if failed to prepare or enable
On failing to prepare or enable a clock, remove the core structure
from the list it has been inserted as it is about to be freed.
This otherwise leads to random crashes when subsequent clocks get
registered, during which parsing of the clock tree becomes adventurous.
Observed with QEMU's RPi-3 emulation.
Fixes: 12ead77432f2 ("clk: Don't try to enable critical clocks if prepare failed")
Signed-off-by: Marc Zyngier <maz@kernel.org>
Cc: Guenter Roeck <linux@roeck-us.net>
Cc: Stephen Boyd <sboyd@kernel.org>
Cc: Michael Turquette <mturquette@baylibre.com>
Link: https://lkml.kernel.org/r/20200505140953.409430-1-maz@kernel.org
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk/clk.c')
-rw-r--r-- | drivers/clk/clk.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c index 39c59f063aa0..2dfb30b963c4 100644 --- a/drivers/clk/clk.c +++ b/drivers/clk/clk.c @@ -3519,6 +3519,9 @@ static int __clk_core_init(struct clk_core *core) out: clk_pm_runtime_put(core); unlock: + if (ret) + hlist_del_init(&core->child_node); + clk_prepare_unlock(); if (!ret) |