Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1404732 > unrolled thread
| Started by | Munehisa Kamata <kamatam@amazon.com> |
|---|---|
| First post | 2016-05-20 23:30 +0200 |
| Last post | 2016-05-21 00:20 +0200 |
| Articles | 3 — 2 participants |
Back to article view | Back to linux.kernel
[Xen-devel][PATCH] xen/events: don't migrate disabled IRQs Munehisa Kamata <kamatam@amazon.com> - 2016-05-20 23:30 +0200
Re: [Xen-devel][PATCH] xen/events: don't migrate disabled IRQs Boris Ostrovsky <boris.ostrovsky@oracle.com> - 2016-05-20 23:40 +0200
Re: [Xen-devel][PATCH] xen/events: don't migrate disabled IRQs Munehisa Kamata <kamatam@amazon.com> - 2016-05-21 00:20 +0200
| From | Munehisa Kamata <kamatam@amazon.com> |
|---|---|
| Date | 2016-05-20 23:30 +0200 |
| Subject | [Xen-devel][PATCH] xen/events: don't migrate disabled IRQs |
| Message-ID | <rB09z-2IX-9@gated-at.bofh.it> |
Commit ff1e22e7a638 ("xen/events: Mask a moving irq") introduced
a crash below. This can be triggered after being resumed from suspend
(e.g. live migration) if there are disabled IRQs with
IRQD_SETAFFINITY_PENDING set.
kernel BUG at kernel/irq/migration.c:31!
...
CPU: 0 PID: 9 Comm: migration/0 Tainted: G E 4.4.8 #1
Hardware name: Xen HVM domU, BIOS 4.2.amazon 04/04/2016
task: ffff880206200000 ti: ffff880206208000 task.ti: ffff880206208000
RIP: 0010:[<ffffffff810c13e9>] [<ffffffff810c13e9>] irq_move_masked_irq+0xd9/0xf0
RSP: 0018:ffff88020620bc88 EFLAGS: 00010046
...
Call Trace:
[<ffffffff81355877>] eoi_pirq+0xa7/0xd0
[<ffffffff81355a07>] __startup_pirq+0xd7/0x140
[<ffffffff81356f77>] xen_irq_resume+0x2c7/0x330
[<ffffffff81354a66>] xen_suspend+0x86/0x140
[<ffffffff810f9a83>] multi_cpu_stop+0xb3/0xe0
[<ffffffff810f99d0>] ? cpu_stop_queue_work+0x80/0x80
[<ffffffff810f9caa>] cpu_stopper_thread+0x7a/0x110
[<ffffffff81092292>] ? finish_task_switch+0x72/0x1d0
[<ffffffff810b2c51>] ? __raw_callee_save___pv_queued_spin_unlock+0x11/0x20
[<ffffffff8108d44f>] smpboot_thread_fn+0x10f/0x170
[<ffffffff8108d340>] ? sort_range+0x30/0x30
[<ffffffff8108a039>] kthread+0xc9/0xe0
[<ffffffff81089f70>] ? kthread_park+0x60/0x60
[<ffffffff814d700f>] ret_from_fork+0x3f/0x70
[<ffffffff81089f70>] ? kthread_park+0x60/0x60
The pending state may last until being suspended, because some IRQs may
show no activities after their affinity settings have been changed.
This change don't let ACK and EOI handlers of xen-pirq and xen-dyn chips
try to migrate disabled IRQs to avoid the BUG in that situation.
Fixes: ff1e22e7a638 ("xen/events: Mask a moving irq")
Reported-and-tested-by: Guilherme Wuensch Manika <gmanika@amazon.de>
To: Boris Ostrovsky <boris.ostrovsky@oracle.com>
To: David Vrabel <david.vrabel@citrix.com>
Cc: xen-devel@lists.xenproject.org
Cc: linux-kernel@vger.kernel.org
Cc: stable@vger.kernel.org
Cc: Matt Wilson <msw@amazon.com>
Signed-off-by: Munehisa Kamata <kamatam@amazon.com>
---
drivers/xen/events/events_base.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/drivers/xen/events/events_base.c b/drivers/xen/events/events_base.c
index cb7138c..be8410f 100644
--- a/drivers/xen/events/events_base.c
+++ b/drivers/xen/events/events_base.c
@@ -487,7 +487,8 @@ static void eoi_pirq(struct irq_data *data)
if (!VALID_EVTCHN(evtchn))
return;
- if (unlikely(irqd_is_setaffinity_pending(data))) {
+ if (unlikely(irqd_is_setaffinity_pending(data) &&
+ !irqd_irq_disabled(data))) {
int masked = test_and_set_mask(evtchn);
clear_evtchn(evtchn);
@@ -1370,7 +1371,8 @@ static void ack_dynirq(struct irq_data *data)
if (!VALID_EVTCHN(evtchn))
return;
- if (unlikely(irqd_is_setaffinity_pending(data))) {
+ if (unlikely(irqd_is_setaffinity_pending(data) &&
+ !irqd_irq_disabled(data))) {
int masked = test_and_set_mask(evtchn);
clear_evtchn(evtchn);
--
2.7.4
[toc] | [next] | [standalone]
| From | Boris Ostrovsky <boris.ostrovsky@oracle.com> |
|---|---|
| Date | 2016-05-20 23:40 +0200 |
| Message-ID | <rB0jf-2Q7-3@gated-at.bofh.it> |
| In reply to | #1404732 |
On 05/20/2016 05:22 PM, Munehisa Kamata wrote:
> Commit ff1e22e7a638 ("xen/events: Mask a moving irq") introduced
> a crash below. This can be triggered after being resumed from suspend
> (e.g. live migration) if there are disabled IRQs with
> IRQD_SETAFFINITY_PENDING set.
A patch just like this has been submitted recently
(http://lists.xenproject.org/archives/html/xen-devel/2016-05/msg00956.html)
and should go in soon.
Thanks.
-boris
[toc] | [prev] | [next] | [standalone]
| From | Munehisa Kamata <kamatam@amazon.com> |
|---|---|
| Date | 2016-05-21 00:20 +0200 |
| Message-ID | <rB0VX-3pl-9@gated-at.bofh.it> |
| In reply to | #1404735 |
I somehow overlooked the patch. It looks just the same as our change. Thank you for pointing out.
Regards,
Munehisa
On 5/20/2016 2:32 PM, Boris Ostrovsky wrote:
> On 05/20/2016 05:22 PM, Munehisa Kamata wrote:
>> Commit ff1e22e7a638 ("xen/events: Mask a moving irq") introduced
>> a crash below. This can be triggered after being resumed from suspend
>> (e.g. live migration) if there are disabled IRQs with
>> IRQD_SETAFFINITY_PENDING set.
>
> A patch just like this has been submitted recently
> (http://lists.xenproject.org/archives/html/xen-devel/2016-05/msg00956.html)
> and should go in soon.
>
> Thanks.
> -boris
>
>
>
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web