diff options
author | Stefan Assmann <sassmann@suse.de> | 2008-06-11 10:35:15 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-07-08 11:50:51 -0400 |
commit | 9197979b518573999d52d9e85bce1680682ed85c (patch) | |
tree | 056a03ab39e68e7533988f35d73a7b0cb9e99622 /include/asm-x86/io_apic.h | |
parent | a9322f6488b432ddc1e89be88242c827c633fb63 (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.h | 4 |
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 */ |
161 | extern int noioapicquirk; | 161 | extern int noioapicquirk; |
162 | 162 | ||
163 | /* -1 if "noapic" boot option passed */ | ||
164 | extern 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 */ |
164 | extern int timer_through_8259; | 167 | extern int timer_through_8259; |
165 | 168 | ||
166 | static inline void disable_ioapic_setup(void) | 169 | static 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 | ||