xen-devel
[Xen-devel] RE: [PATCH v2 2/2] x86: don't unmask disabled irqs when migr
To: |
Stefano Stabellini <stefano.stabellini@xxxxxxxxxxxxx> |
Subject: |
[Xen-devel] RE: [PATCH v2 2/2] x86: don't unmask disabled irqs when migrating them |
From: |
"Tian, Kevin" <kevin.tian@xxxxxxxxx> |
Date: |
Mon, 9 May 2011 10:11:13 +0800 |
Accept-language: |
en-US |
Acceptlanguage: |
en-US |
Cc: |
"xen-devel@xxxxxxxxxxxxxxxxxxx" <xen-devel@xxxxxxxxxxxxxxxxxxx>, "linux-kernel@xxxxxxxxxxxxxxx" <linux-kernel@xxxxxxxxxxxxxxx>, "JBeulich@xxxxxxxxxx" <JBeulich@xxxxxxxxxx>, Ian Campbell <Ian.Campbell@xxxxxxxxxxxxx>, "mingo@xxxxxxxxxx" <mingo@xxxxxxxxxx>, "hpa@xxxxxxxxx" <hpa@xxxxxxxxx>, Thomas Gleixner <tglx@xxxxxxxxxxxxx> |
Delivery-date: |
Sun, 08 May 2011 19:12:51 -0700 |
Envelope-to: |
www-data@xxxxxxxxxxxxxxxxxxx |
In-reply-to: |
<alpine.DEB.2.00.1105061526120.10886@kaball-desktop> |
List-help: |
<mailto:xen-devel-request@lists.xensource.com?subject=help> |
List-id: |
Xen developer discussion <xen-devel.lists.xensource.com> |
List-post: |
<mailto:xen-devel@lists.xensource.com> |
List-subscribe: |
<http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=subscribe> |
List-unsubscribe: |
<http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe> |
References: |
<625BA99ED14B2D499DC4E29D8138F1505C8ED7F7E3@xxxxxxxxxxxxxxxxxxxxxxxxxxxx> <alpine.LFD.2.02.1105061149330.3005@ionos> <625BA99ED14B2D499DC4E29D8138F1505C8ED7F962@xxxxxxxxxxxxxxxxxxxxxxxxxxxx> <alpine.DEB.2.00.1105061526120.10886@kaball-desktop> |
Sender: |
xen-devel-bounces@xxxxxxxxxxxxxxxxxxx |
Thread-index: |
AcwL+bTQLIdKuFPJQSKYXmpwNiVr0QB8sQcw |
Thread-topic: |
[PATCH v2 2/2] x86: don't unmask disabled irqs when migrating them |
> From: Stefano Stabellini [mailto:stefano.stabellini@xxxxxxxxxxxxx]
> Sent: Friday, May 06, 2011 10:29 PM
>
> On Fri, 6 May 2011, Tian, Kevin wrote:
> > > From: Thomas Gleixner
> > > Sent: Friday, May 06, 2011 6:00 PM
> > >
> > > On Fri, 6 May 2011, Tian, Kevin wrote:
> > > > x86: don't unmask disabled irqs when migrating them
> > > >
> > > > it doesn't make sense to mask/unmask a disabled irq when migrating
> > > > it from offlined cpu to another, because it's not expected to
> > > > handle any instance of it. Current mask/set_affinity/unmask steps
> > > > may trigger unexpected instance on disabled irq which then simply
> > > > bug on when there is no handler for it. One failing example is observed
> > > > in
> Xen.
> > > > Xen pvops
> > >
> > > So there is no handler, why the heck is there an irq action?
> > >
> > > if (!irq_has_action(irq) ....
> > > continue;
> > >
> > > Should have caught an uninitialized interrupt. If Xen abuses
> > > interrupts that way, then it rightfully explodes. And we do not fix it by
> > > magic
> somewhere else.
> >
> > sorry that my bad description here. there does be a dummy handler
> > registered on such irqs which simply throws out a BUG_ON when hit. I
> > should just say such injection is not expected instead of no handler.
> > :-)
>
> I don't think this patch is necessary anymore after the event channel handling
> cleanup patches I have just sent to the list.
> Could you please try the following two patches:
>
> http://marc.info/?l=linux-kernel&m=130468120032172&w=2
> http://marc.info/?l=linux-kernel&m=130468178200468&w=2
>
> and let me know if you still need this patch?
yes, with your patch this issue disappears, since you explicitly make
mask/unmask as
a nop for xen_percpu_chip, which effectively avoids them from undesired unmask
when doing the migration. Though it works, it's not intuitive as to me it's an
workaround to make Xen chip implementation adapting to specific fixup_irqs
logic.
If the logic within fixup_irqs is changed in the future, it's still possible to
expose this
issue again. If we explicitly avoid the percpu irqs in the 1st place in
fixup_irqs like
what my 1st patch does, it'd be clearer.
But based on your referred patchesand Jeremy's info about possible unbinding
xenn
event from irq namespace, my patches are not that necessary now as before. So
I'll leave
to Thomas to decide whether he wants to take my 1st patch. the 2nd one talked
in this
thread could be dropped.
Thanks
Kevin
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
<Prev in Thread] |
Current Thread |
[Next in Thread>
|
- [Xen-devel] Re: [PATCH v2 2/2] x86: don't unmask disabled irqs when migrating them, (continued)
- [Xen-devel] RE: [PATCH v2 2/2] x86: don't unmask disabled irqs when migrating them, Stefano Stabellini
- [Xen-devel] RE: [PATCH v2 2/2] x86: don't unmask disabled irqs when migrating them, Tian, Kevin
- [Xen-devel] RE: [PATCH v2 2/2] x86: don't unmask disabled irqs when migrating them,
Tian, Kevin <=
- [Xen-devel] RE: [PATCH v2 2/2] x86: don't unmask disabled irqs when migrating them, Stefano Stabellini
- [Xen-devel] RE: [PATCH v2 2/2] x86: don't unmask disabled irqs when migrating them, Thomas Gleixner
- [Xen-devel] RE: [PATCH v2 2/2] x86: don't unmask disabled irqs when migrating them, Tian, Kevin
- [Xen-devel] RE: [PATCH v2 2/2] x86: don't unmask disabled irqs when migrating them, Tian, Kevin
- [Xen-devel] RE: [PATCH v2 2/2] x86: don't unmask disabled irqs when migrating them, Stefano Stabellini
- Re: [Xen-devel] RE: [PATCH v2 2/2] x86: don't unmask disabled irqs when migrating them, Konrad Rzeszutek Wilk
|
|
|