From: "Martin J. Bligh" <Martin.Bligh@us.ibm.com>
To: Linus Torvalds <torvalds@transmeta.com>
Cc: linux-kernel <linux-kernel@vger.kernel.org>
Subject: [PATCH] NUMA-Q disable irqbalance
Date: Mon, 05 Aug 2002 16:51:34 -0700 [thread overview]
Message-ID: <349030000.1028591494@flay> (raw)
This patch is from Matt Dobson. It disables irq_balance for the NUMA-Q
and makes it a config option for everyone else. This is needed for NUMA-Q
to work, since the irq_balance code assumes a logical flat apic addressing
mode that's not true in all cases. We created a config option since
irq_balance makes performance significantly worse for some workloads.
Please apply,
Martin.
diff -Nur linux-2.5.25-vanilla/arch/i386/Config.help linux-2.5.25-patched/arch/i386/Config.help
--- linux-2.5.25-vanilla/arch/i386/Config.help Fri Jul 5 16:42:04 2002
+++ linux-2.5.25-patched/arch/i386/Config.help Thu Jul 11 17:27:01 2002
@@ -41,6 +41,12 @@
486, 586, Pentiums, and various instruction-set-compatible chips by
AMD, Cyrix, and others.
+CONFIG_IRQ_BALANCE
+ This option is used to turn IRQ Balancing on machines with multiple
+ APIC's (ie: SMP, NUMA, etc) on or off. This behavior has been seen
+ under some conditions to reduce performance, and on some platorms causes
+ interesting hangs, particularly those with more than 8 CPUs.
+
CONFIG_MULTIQUAD
This option is used for getting Linux to run on a (IBM/Sequent) NUMA
multiquad box. This changes the way that processors are bootstrapped,
diff -Nur linux-2.5.25-vanilla/arch/i386/config.in linux-2.5.25-patched/arch/i386/config.in
--- linux-2.5.25-vanilla/arch/i386/config.in Fri Jul 5 16:42:20 2002
+++ linux-2.5.25-patched/arch/i386/config.in Thu Jul 11 17:16:52 2002
@@ -164,8 +164,19 @@
if [ "$CONFIG_X86_UP_IOAPIC" = "y" ]; then
define_bool CONFIG_X86_IO_APIC y
fi
+ define_bool CONFIG_IRQBALANCE n
else
bool 'Multiquad NUMA system' CONFIG_MULTIQUAD
+ if [ "$CONFIG_MULTIQUAD" = "y" ]; then
+ define_bool CONFIG_IRQBALANCE_DISABLE y
+ else
+ bool 'Turn Off IRQ Balancing' CONFIG_IRQBALANCE_DISABLE
+ fi
+ if [ "$CONFIG_IRQBALANCE_DISABLE" = "y" ]; then
+ define_bool CONFIG_IRQBALANCE n
+ else
+ define_bool CONFIG_IRQBALANCE y
+ fi
fi
bool 'Machine Check Exception' CONFIG_X86_MCE
diff -Nur linux-2.5.25-vanilla/arch/i386/kernel/io_apic.c linux-2.5.25-patched/arch/i386/kernel/io_apic.c
--- linux-2.5.25-vanilla/arch/i386/kernel/io_apic.c Fri Jul 5 16:42:20 2002
+++ linux-2.5.25-patched/arch/i386/kernel/io_apic.c Thu Jul 11 16:12:28 2002
@@ -199,7 +199,7 @@
spin_unlock_irqrestore(&ioapic_lock, flags);
}
-#if CONFIG_SMP
+#if CONFIG_IRQBALANCE
typedef struct {
unsigned int cpu;
@@ -211,15 +211,12 @@
extern unsigned long irq_affinity [NR_IRQS];
-#endif
-
#define IDLE_ENOUGH(cpu,now) \
(idle_cpu(cpu) && ((now) - irq_stat[(cpu)].idle_timestamp > 1))
#define IRQ_ALLOWED(cpu,allowed_mask) \
((1 << cpu) & (allowed_mask))
-#if CONFIG_SMP
static unsigned long move(int curr_cpu, unsigned long allowed_mask, unsigned long now, int direction)
{
int search_idle = 1;
@@ -264,9 +261,9 @@
set_ioapic_affinity(irq, 1 << entry->cpu);
}
}
-#else /* !SMP */
+#else /* !CONFIG_IRQBALANCE */
static inline void balance_irq(int irq) { }
-#endif
+#endif /* CONFIG_IRQBALANCE */
/*
* support for broken MP BIOSs, enables hand-redirection of PIRQ0-7 to
next reply other threads:[~2002-08-05 23:50 UTC|newest]
Thread overview: 35+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-08-05 23:51 Martin J. Bligh [this message]
2002-08-13 16:13 ` [PATCH] NUMA-Q disable irqbalance Martin J. Bligh
2002-08-13 16:41 ` Linus Torvalds
2002-08-13 16:57 ` Alan Cox
2002-08-13 17:24 ` Martin J. Bligh
2002-08-13 17:38 ` Alan Cox
2002-08-13 17:14 ` Martin J. Bligh
2002-08-13 17:24 ` Linus Torvalds
2002-08-13 18:02 ` Martin J. Bligh
2002-08-13 18:20 ` Linus Torvalds
2002-08-13 18:58 ` Martin J. Bligh
2002-08-13 19:22 ` Linus Torvalds
2002-08-13 20:04 ` Martin J. Bligh
2002-08-13 20:22 ` Linus Torvalds
2002-08-14 5:52 ` Martin J. Bligh
2002-08-14 10:10 ` Jos Hulzink
2002-08-14 11:12 ` David Lang
2002-08-13 20:22 ` Alan Cox
2002-08-13 20:35 ` Linus Torvalds
2002-08-13 20:34 ` Alan Cox
2002-08-13 20:42 ` Martin J. Bligh
2002-08-13 21:24 ` Linus Torvalds
2002-08-13 22:29 ` Andrew Theurer
2002-08-13 23:30 ` Andrea Arcangeli
2002-08-14 21:16 ` James Cleverdon
2002-08-23 2:31 ` [PATCH] 2.5.31 Summit NUMA patch with dynamic IRQ balancing James Cleverdon
[not found] ` <20020813233007.GV14394-YO0K3UtdbwQZxi9Dt0/nrQC/G2K4zDHf@public.gmane.org>
2002-08-23 2:31 ` James Cleverdon
2002-08-20 0:49 ` [PATCH] NUMA-Q disable irqbalance Dave Hansen
2002-08-13 22:08 ` Rik van Riel
2002-08-13 22:14 ` Rik van Riel
2002-08-14 14:49 ` Linus Torvalds
2002-08-14 15:19 ` Rik van Riel
2002-08-24 12:19 ` Zwane Mwaikambo
2002-08-27 1:23 ` James Cleverdon
2002-08-27 7:46 ` Zwane Mwaikambo
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=349030000.1028591494@flay \
--to=martin.bligh@us.ibm.com \
--cc=linux-kernel@vger.kernel.org \
--cc=torvalds@transmeta.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.