From: Andi Kleen <ak@suse.de>
To: Ingo Molnar <mingo@elte.hu>
Cc: torvalds@osdl.org, akpm@osdl.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] Prevent spinlock debug from timing out too early
Date: Mon, 6 Feb 2006 22:42:30 +0100 [thread overview]
Message-ID: <200602062242.30897.ak@suse.de> (raw)
In-Reply-To: <20060206213618.GA28566@elte.hu>
On Monday 06 February 2006 22:36, Ingo Molnar wrote:
>
> * Andi Kleen <ak@suse.de> wrote:
>
> > Index: linux-2.6.15/lib/spinlock_debug.c
> > ===================================================================
> > --- linux-2.6.15.orig/lib/spinlock_debug.c
> > +++ linux-2.6.15/lib/spinlock_debug.c
> > @@ -68,13 +68,13 @@ static inline void debug_spin_unlock(spi
> > static void __spin_lock_debug(spinlock_t *lock)
> > {
> > int print_once = 1;
> > - u64 i;
> >
> > for (;;) {
> > - for (i = 0; i < loops_per_jiffy * HZ; i++) {
> > - cpu_relax();
> > + unsigned long timeout = jiffies + HZ;
> > + while (time_before(jiffies, timeout)) {
> > if (__raw_spin_trylock(&lock->raw_lock))
> > return;
> > + cpu_relax();
>
> The reason i added a loop counter was to solve the case where we are
> spinning with interrupts disabled - jiffies wont increase there!
Yes but the NMI watchdog should catch it eventually
[we really should enable it by default on i386 too - local APIC
NMI should work everywhere with APIC]
Oops I missed the write lock case. Thanks.
> a better solution would be to call __delay(1) after the first failed
> attempt, that would make the delay at least 1 second long. It seems
> __delay() is de-facto exported by every architecture, so we can rely on
> it in the global spinlock code.
>
> So how about the patch below instead?
Are you sure loops_per_jiffie is always in delay(1) units?
-Andi
next prev parent reply other threads:[~2006-02-06 21:42 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-02-06 21:16 [PATCH] Prevent spinlock debug from timing out too early Andi Kleen
2006-02-06 21:36 ` Ingo Molnar
2006-02-06 21:42 ` Andi Kleen [this message]
2006-02-06 23:22 ` Ingo Molnar
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=200602062242.30897.ak@suse.de \
--to=ak@suse.de \
--cc=akpm@osdl.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=torvalds@osdl.org \
/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.