From: Vivek Goyal <vgoyal@in.ibm.com>
To: Pavel Emelianov <xemul@openvz.org>
Cc: Pavel Emelianov <xemul@openvz.org>, Andrew Morton <akpm@osdl.org>,
mingo@redhat.com, Kirill Korotaev <dev@openvz.org>,
linux kernel mailing list <linux-kernel@vger.kernel.org>
Subject: Re: [RFC] [PATCH] Fix misrouted interrupts deadlocks
Date: Mon, 20 Nov 2006 15:52:56 -0500 [thread overview]
Message-ID: <20061120205256.GB6141@in.ibm.com> (raw)
In-Reply-To: <20061120195652.GA6141@in.ibm.com>
On Mon, Nov 20, 2006 at 02:56:52PM -0500, Vivek Goyal wrote:
> On Mon, Nov 20, 2006 at 02:23:35PM -0500, Vivek Goyal wrote:
> > On Fri, Nov 10, 2006 at 04:55:48PM +0300, Pavel Emelianov wrote:
> > > As the second lock on booth CPUs is taken before checking that
> > > this irq is being handled in another processor this may cause
> > > a deadlock. This issue is only theoretical.
> > >
> > > I propose the attached patch to fix booth problems: when trying
> > > to handle misrouted IRQ active desc->lock may be unlocked.
> > >
> > > Please comment.
> >
> > > --- ./kernel/irq/spurious.c.irqlockup 2006-11-09 11:19:10.000000000 +0300
> > > +++ ./kernel/irq/spurious.c 2006-11-10 16:53:38.000000000 +0300
> > > @@ -147,7 +147,11 @@ void note_interrupt(unsigned int irq, st
> > > if (unlikely(irqfixup)) {
> > > /* Don't punish working computers */
> > > if ((irqfixup == 2 && irq == 0) || action_ret == IRQ_NONE) {
> > > - int ok = misrouted_irq(irq);
> > > + int ok;
> > > +
> > > + spin_unlock(&desc->lock);
> > > + ok = misrouted_irq(irq);
> > > + spin_lock(&desc->lock);
> >
> > Hi Pavel,
> >
> > Till -rc5, I was able to boot a kernel with irqpoll option and in -rc6 I
> > can't. It simply hangs. I suspect it is realted to this change. I have yet
> > to confirm that. But before that one observation.
> >
>
> Hi Pavel,
>
> If I backout your changes, everything works fine. So it looks like that
> the problem I am facing is because of your patch but I don't have a logical
> explanation yet that why the problem is there. Just realasing a lock
> which is not currently acquired should not hang the system?
>
Some more data regarding this issue.
For my system it gets locked in following sequence.
handle_level_irq() {
spin_unlock(desc->lock)
......
note_interrupt() {
/* Called without desc->lock held */
spin_unlock(desc->lock)
misrouted_irq()
spin_lock(desc->lock)
}
spin_lock(desc->lock) /* Lockup */
}
So basically problems seems to be due to calling conventions of
note_interrupt(). In few cases we call it with desc->lock held and in other
cases we call it with desc->lock not held.
I guess, note_interrupt() should restore the desc->lock status back to the
state of the lock when function was entered so that caller does not lockup.
Thanks
Vivek
next prev parent reply other threads:[~2006-11-20 20:53 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-11-10 13:55 Pavel Emelianov
2006-11-10 14:12 ` Ingo Molnar
2006-11-10 14:31 ` Pavel Emelianov
2006-11-20 19:23 ` Vivek Goyal
2006-11-20 19:56 ` Vivek Goyal
2006-11-20 20:52 ` Vivek Goyal [this message]
2006-11-21 8:01 ` Pavel Emelianov
2006-11-21 8:10 ` Pavel Emelianov
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=20061120205256.GB6141@in.ibm.com \
--to=vgoyal@in.ibm.com \
--cc=akpm@osdl.org \
--cc=dev@openvz.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=xemul@openvz.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®