* [PATCH] clk: Add some more lockdep assertions
@ 2015-05-07 1:26 Stephen Boyd
0 siblings, 0 replies; only message in thread
From: Stephen Boyd @ 2015-05-07 1:26 UTC (permalink / raw)
To: Mike Turquette, Stephen Boyd; +Cc: linux-kernel, linux-clk
We don't check to make sure the enable_lock is held across
enable/disable and we don't check if the prepare_lock is held
across prepare/unprepare. Add some asserts to catch any future
locking problems.
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
---
Based on clk-next
drivers/clk/clk.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c
index 8cea0ec7179b..bbc04eae3b92 100644
--- a/drivers/clk/clk.c
+++ b/drivers/clk/clk.c
@@ -544,6 +544,8 @@ EXPORT_SYMBOL_GPL(__clk_mux_determine_rate_closest);
static void clk_core_unprepare(struct clk_core *core)
{
+ lockdep_assert_held(&prepare_lock);
+
if (!core)
return;
@@ -590,6 +592,8 @@ static int clk_core_prepare(struct clk_core *core)
{
int ret = 0;
+ lockdep_assert_held(&prepare_lock);
+
if (!core)
return 0;
@@ -645,6 +649,8 @@ EXPORT_SYMBOL_GPL(clk_prepare);
static void clk_core_disable(struct clk_core *core)
{
+ lockdep_assert_held(&enable_lock);
+
if (!core)
return;
@@ -693,6 +699,8 @@ static int clk_core_enable(struct clk_core *core)
{
int ret = 0;
+ lockdep_assert_held(&enable_lock);
+
if (!core)
return 0;
--
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2015-05-07 1:26 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-07 1:26 [PATCH] clk: Add some more lockdep assertions Stephen Boyd
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox