summaryrefslogtreecommitdiffstats
path: root/drivers/clk/clk.c
diff options
context:
space:
mode:
authorTomeu Vizoso2014-12-02 08:54:19 +0100
committerMichael Turquette2014-12-04 00:15:34 +0100
commit10cdfe54dab034311c8e2fad9ba2dffbe616caa9 (patch)
tree9a475d10896be0745db097ff414dec7447466f9c /drivers/clk/clk.c
parentclk: Remove unused function __clk_get_prepare_count (diff)
downloadkernel-qcow2-linux-10cdfe54dab034311c8e2fad9ba2dffbe616caa9.tar.gz
kernel-qcow2-linux-10cdfe54dab034311c8e2fad9ba2dffbe616caa9.tar.xz
kernel-qcow2-linux-10cdfe54dab034311c8e2fad9ba2dffbe616caa9.zip
clk: Don't try to use a struct clk* after it could have been freed
As __clk_release could call kfree on clk and then we wouldn't have a safe way of getting the module that owns the clock. Signed-off-by: Tomeu Vizoso <tomeu.vizoso@collabora.com> Fixes: fcb0ee6a3d33 ("clk: Implement clk_unregister") Reviewed-by: Stephen Boyd <sboyd@codeaurora.org> Signed-off-by: Michael Turquette <mturquette@linaro.org>
Diffstat (limited to 'drivers/clk/clk.c')
-rw-r--r--drivers/clk/clk.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c
index 42f940ff5edf..609e9db1a69a 100644
--- a/drivers/clk/clk.c
+++ b/drivers/clk/clk.c
@@ -2268,14 +2268,17 @@ int __clk_get(struct clk *clk)
void __clk_put(struct clk *clk)
{
+ struct module *owner;
+
if (!clk || WARN_ON_ONCE(IS_ERR(clk)))
return;
clk_prepare_lock();
+ owner = clk->owner;
kref_put(&clk->ref, __clk_release);
clk_prepare_unlock();
- module_put(clk->owner);
+ module_put(owner);
}
/*** clk rate change notifiers ***/