aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-x86/io_apic.h
diff options
context:
space:
mode:
authorStefan Assmann <sassmann@suse.de>2008-06-11 10:35:15 -0400
committerIngo Molnar <mingo@elte.hu>2008-07-08 11:50:51 -0400
commit9197979b518573999d52d9e85bce1680682ed85c (patch)
tree056a03ab39e68e7533988f35d73a7b0cb9e99622 /include/asm-x86/io_apic.h
parenta9322f6488b432ddc1e89be88242c827c633fb63 (diff)
x86, pci: introduce pci=ioapicreroute kernel cmdline option
Introduce pci=ioapicreroute kernel cmdline option to enable rerouting of boot interrupts to the primary io-apic. Signed-off-by: Stefan Assmann <sassmann@suse.de> Signed-off-by: Olaf Dabrunz <od@suse.de> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/asm-x86/io_apic.h')
-rw-r--r--include/asm-x86/io_apic.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/asm-x86/io_apic.h b/include/asm-x86/io_apic.h
index 8ca0110819f4..a39670ae17df 100644
--- a/include/asm-x86/io_apic.h
+++ b/include/asm-x86/io_apic.h
@@ -160,12 +160,16 @@ extern int skip_ioapic_setup;
160/* 1 if "noapic" boot option passed */ 160/* 1 if "noapic" boot option passed */
161extern int noioapicquirk; 161extern int noioapicquirk;
162 162
163/* -1 if "noapic" boot option passed */
164extern int noioapicreroute;
165
163/* 1 if the timer IRQ uses the '8259A Virtual Wire' mode */ 166/* 1 if the timer IRQ uses the '8259A Virtual Wire' mode */
164extern int timer_through_8259; 167extern int timer_through_8259;
165 168
166static inline void disable_ioapic_setup(void) 169static inline void disable_ioapic_setup(void)
167{ 170{
168 noioapicquirk = 1; 171 noioapicquirk = 1;
172 noioapicreroute = -1;
169 skip_ioapic_setup = 1; 173 skip_ioapic_setup = 1;
170} 174}
171 175