public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [patch] x64: Avoid irq_chip mask/unmask in fixup_irqs for interrupt-remapping
@ 2009-06-04 18:59 Suresh Siddha
  2009-06-04 23:13 ` Eric W. Biederman
  0 siblings, 1 reply; 10+ messages in thread
From: Suresh Siddha @ 2009-06-04 18:59 UTC (permalink / raw)
  To: mingo, hpa, tglx; +Cc: linux-kernel, ebiederm, andi, travis, steiner

From: Suresh Siddha <suresh.b.siddha@intel.com>
Subject: x64: Avoid irq_chip mask/unmask in fixup_irqs for interrupt-remapping

In the presence of interrupt-remapping, irqs will be migrated in the
process context and we don't do (and there is no need to) irq_chip mask/unmask
while migrating the interrupt.

Similarly fix the fixup_irqs() that get called during cpu offline and avoid
calling irq_chip mask/unmask for irqs that are ok to be migrated in the
process context.

While we didn't observe any race condition with the existing code,
this change takes complete advantage of interrupt-remapping in
the newer generation platforms and avoids any potential HW lockup's
(that often worry Eric :)

Signed-off-by: Suresh Siddha <suresh.b.siddha@intel.com>
Cc: Eric W. Biederman <ebiederm@xmission.com>
---

diff --git a/arch/x86/kernel/irq_64.c b/arch/x86/kernel/irq_64.c
index 977d8b4..82265a5 100644
--- a/arch/x86/kernel/irq_64.c
+++ b/arch/x86/kernel/irq_64.c
@@ -95,7 +95,7 @@ void fixup_irqs(void)
 			affinity = cpu_all_mask;
 		}
 
-		if (desc->chip->mask)
+		if (!(desc->status & IRQ_MOVE_PCNTXT) && desc->chip->mask)
 			desc->chip->mask(irq);
 
 		if (desc->chip->set_affinity)
@@ -103,7 +103,7 @@ void fixup_irqs(void)
 		else if (!(warned++))
 			set_affinity = 0;
 
-		if (desc->chip->unmask)
+		if (!(desc->status & IRQ_MOVE_PCNTXT) && desc->chip->unmask)
 			desc->chip->unmask(irq);
 
 		spin_unlock(&desc->lock);



^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2009-06-06 23:38 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-06-04 18:59 [patch] x64: Avoid irq_chip mask/unmask in fixup_irqs for interrupt-remapping Suresh Siddha
2009-06-04 23:13 ` Eric W. Biederman
2009-06-05  1:18   ` Suresh Siddha
2009-06-05  1:19     ` Suresh Siddha
2009-06-05  1:47       ` Eric W. Biederman
2009-06-06  1:19         ` Suresh Siddha
2009-06-06  2:58           ` Eric W. Biederman
2009-06-05 22:20     ` Gary Hade
2009-06-06  0:57       ` Suresh Siddha
2009-06-06 23:37         ` Gary Hade

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox