* [patch] boot hang on multi-quad machines.
@ 2002-06-26 0:20 Matthew Dobson
0 siblings, 0 replies; only message in thread
From: Matthew Dobson @ 2002-06-26 0:20 UTC (permalink / raw)
To: linux-kernel; +Cc: Linus Torvalds, Michael Hohnbaum, Ingo Molnar
[-- Attachment #1: Type: text/plain, Size: 444 bytes --]
As mentioned in several posts, the balance_irq code introduced in 2.5.9 is
broken for any architecture that doesn't use flat logical addressing. Also,
even when it does work, there have been several reports of it degrading
performance. As the NUMA-Q architecture I work with doesn't use flat logical
addressing, and it isn't worth the possible performance hit, I'm submitting
this patch for inclusion into the mainline.
Cheers!
-Matt
[-- Attachment #2: balance_irq-fix.patch --]
[-- Type: text/plain, Size: 358 bytes --]
--- linux-2.5.21-vanilla/arch/i386/kernel/io_apic.c Fri Jun 14 17:17:44 2002
+++ linux-2.5.21-patched/arch/i386/kernel/io_apic.c.fixed Mon Jun 24 17:54:20 2002
@@ -247,7 +247,7 @@
static inline void balance_irq(int irq)
{
-#if CONFIG_SMP
+#if (CONFIG_SMP && !CONFIG_MULTIQUAD)
irq_balance_t *entry = irq_balance + irq;
unsigned long now = jiffies;
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2002-06-26 0:21 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-06-26 0:20 [patch] boot hang on multi-quad machines Matthew Dobson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox