]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
clk: Don't try to use a struct clk* after it could have been freed
authorTomeu Vizoso <tomeu.vizoso@collabora.com>
Tue, 2 Dec 2014 07:54:19 +0000 (08:54 +0100)
committerLuis Henriques <luis.henriques@canonical.com>
Thu, 22 Jan 2015 16:33:34 +0000 (16:33 +0000)
commit 10cdfe54dab034311c8e2fad9ba2dffbe616caa9 upstream.

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>
Signed-off-by: Luis Henriques <luis.henriques@canonical.com>
drivers/clk/clk.c

index 4cc83ef7ef61b39d345c33993ae3b71279a69bea..1dee8d2086fb704aafd2fb7a9a4c70c1f25ec1be 100644 (file)
@@ -2234,14 +2234,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        ***/