summaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/apic/io_apic.c
diff options
context:
space:
mode:
authorJeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>2009-06-08 03:14:59 -0700
committerJeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>2009-07-14 13:32:49 -0700
commit8e13d697febc1ba17e70ed88789255c8bc25aa41 (patch)
tree0ee7adfb689ee297096711cc3742f54fe1722e01 /arch/x86/kernel/apic/io_apic.c
parent83c21bedf63ce92a2dd82ae2c7a96179b0aa4372 (diff)
downloadlinux-stable-8e13d697febc1ba17e70ed88789255c8bc25aa41.tar.gz
linux-stable-8e13d697febc1ba17e70ed88789255c8bc25aa41.tar.bz2
linux-stable-8e13d697febc1ba17e70ed88789255c8bc25aa41.zip
x86/ioapic.c: move lost comment to what seems like appropriate place
The comment got separated from its subject, so move it to what appears to be the right place, and update to describe the current structure. Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Diffstat (limited to 'arch/x86/kernel/apic/io_apic.c')
-rw-r--r--arch/x86/kernel/apic/io_apic.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/arch/x86/kernel/apic/io_apic.c b/arch/x86/kernel/apic/io_apic.c
index ec52e0c045c4..a097a773bc76 100644
--- a/arch/x86/kernel/apic/io_apic.c
+++ b/arch/x86/kernel/apic/io_apic.c
@@ -116,13 +116,6 @@ static int __init parse_noapic(char *str)
}
early_param("noapic", parse_noapic);
-/*
- * This is performance-critical, we want to do it O(1)
- *
- * the indexing order of this array favors 1:1 mappings
- * between pins and IRQs.
- */
-
struct irq_pin_list {
int apic, pin;
struct irq_pin_list *next;
@@ -137,6 +130,11 @@ static struct irq_pin_list *get_one_free_irq_2_pin(int node)
return pin;
}
+/*
+ * This is performance-critical, we want to do it O(1)
+ *
+ * Most irqs are mapped 1:1 with pins.
+ */
struct irq_cfg {
struct irq_pin_list *irq_2_pin;
cpumask_var_t domain;