From: Stephen Boyd <sboyd@codeaurora.org>
To: David Lechner <david@lechnology.com>
Cc: Michael Turquette <mturquette@baylibre.com>,
linux-clk@vger.kernel.org, linux-kernel@vger.kernel.org,
Jerome Brunet <jbrunet@baylibre.com>
Subject: Re: [PATCH] clk: fix spin_lock/unlock imbalance on bad clk_enable() reentrancy
Date: Wed, 20 Dec 2017 16:23:47 -0800 [thread overview]
Message-ID: <20171220230009.GI7997@codeaurora.org> (raw)
In-Reply-To: <749e4759-3511-92d4-a19a-0f72c31b1ee6@lechnology.com>
On 12/20, David Lechner wrote:
> On 12/20/2017 02:33 PM, David Lechner wrote:
> >
> >So, as you can see, we get 4 warnings here. There is no problem
> >with any clock provider or consumer (as far as I can tell). The
> >bug here is that spin_trylock_irqsave() always returns true on
> >non-SMP systems, which messes up the reference counting.
> >
> >usb20_phy_clk_enable() currently works because mach-davinci does
> >not use the common clock framework. However, I am trying to move
> >it to the common clock framework, which is how I discovered this
> >bug.
>
> One more thing I mentioned previously, but is worth mentioning again
> in detail is that if you enable CONFIG_DEBUG_SPINLOCK, that changes
> the behavior of spin_trylock_irqsave() on non-SMP systems. It no
> longer always returns true and so everything works as expected in
> the call chain that I described previously.
>
> The difference is that with CONFIG_DEBUG_SPINLOCK=n, we have
>
> #define arch_spin_trylock(lock) ({ barrier(); (void)(lock); 1; })
>
> But if CONFIG_DEBUG_SPINLOCK=y, then we have
>
> static inline int arch_spin_trylock(arch_spinlock_t *lock)
> {
> char oldval = lock->slock;
>
> lock->slock = 0;
> barrier();
>
> return oldval > 0;
> }
>
> This comes from include/linux/spinlock_up.h, which is included from
> include/linux/spinlock.h
>
> #ifdef CONFIG_SMP
> # include <asm/spinlock.h>
> #else
> # include <linux/spinlock_up.h>
> #endif
>
>
> So, the question I have is: what is the actual "correct" behavior of
> spin_trylock_irqsave()? Is it really supposed to always return true
> when CONFIG_DEBUG_SPINLOCK=n and CONFIG_SMP=n or is this a bug?
Thanks for doing the analysis in this thread.
When CONFIG_DEBUG_SPINLOCK=n and CONFIG_SMP=n, spinlocks are
compiler barriers, that's it. So even if it is a bug to always
return true, I fail to see how we can detect that a spinlock is
already held in this configuration and return true or false.
I suppose the best option is to make clk_enable_lock() and
clk_enable_unlock() into nops or pure owner/refcount/barrier
updates when CONFIG_SMP=n. We pretty much just need the barrier
semantics when there's only a single CPU.
--
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
a Linux Foundation Collaborative Project
next prev parent reply other threads:[~2017-12-21 0:23 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-12 23:43 [PATCH] clk: fix spin_lock/unlock imbalance on bad clk_enable() reentrancy David Lechner
2017-12-13 4:14 ` David Lechner
2017-12-15 13:47 ` Jerome Brunet
2017-12-15 16:26 ` David Lechner
2017-12-15 16:29 ` David Lechner
2017-12-19 22:29 ` Michael Turquette
2017-12-19 22:29 ` Michael Turquette
2017-12-20 18:53 ` David Lechner
2017-12-20 19:24 ` Michael Turquette
2017-12-20 19:24 ` Michael Turquette
2017-12-20 20:33 ` David Lechner
2017-12-20 21:50 ` David Lechner
2017-12-21 0:23 ` Stephen Boyd [this message]
2017-12-22 1:39 ` Stephen Boyd
2017-12-22 3:29 ` David Lechner
2017-12-22 18:42 ` David Lechner
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20171220230009.GI7997@codeaurora.org \
--to=sboyd@codeaurora.org \
--cc=david@lechnology.com \
--cc=jbrunet@baylibre.com \
--cc=linux-clk@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mturquette@baylibre.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.