diff options
author | Weidong Han <weidong.han@intel.com> | 2009-04-17 04:42:13 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-04-19 04:21:33 -0400 |
commit | 5d0ae2db6deac4f15dac4f42f23bc56448fc8d4d (patch) | |
tree | 6f823dfb3cdf43dcf0f41f4e6b7297daa6742d0f /arch/x86/include/asm/apic.h | |
parent | 2b2fd87a6ef56ba7647a578e81bb8c8efda166b8 (diff) |
x86, intr-remap: fix ack for interrupt remapping
Shouldn't call ack_apic_edge() in ir_ack_apic_edge(), because
ack_apic_edge() does more than just ack: it also does irq migration
in the non-interrupt-remapping case. But there is no such need for
interrupt-remapping case, as irq migration is done in the process
context.
Similarly, ir_ack_apic_level() shouldn't call ack_apic_level, and
instead should do the local cpu's EOI + directed EOI to the io-apic.
ack_x2APIC_irq() is not neccessary, because ack_APIC_irq() will use MSR
write for x2apic, and uncached write for non-x2apic.
[ Impact: simplify/standardize intr-remap IRQ acking, fix on !x2apic ]
Signed-off-by: Suresh Siddha <suresh.b.siddha@intel.com>
Signed-off-by: Weidong Han <weidong.han@intel.com>
Acked-by: David Woodhouse <David.Woodhouse@intel.com>
Cc: iommu@lists.linux-foundation.org
Cc: allen.m.kay@intel.com
Cc: fenghua.yu@intel.com
LKML-Reference: <1239957736-6161-3-git-send-email-weidong.han@intel.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/include/asm/apic.h')
-rw-r--r-- | arch/x86/include/asm/apic.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/arch/x86/include/asm/apic.h b/arch/x86/include/asm/apic.h index 2bd5a463fd1f..d4cb7e590c06 100644 --- a/arch/x86/include/asm/apic.h +++ b/arch/x86/include/asm/apic.h | |||
@@ -204,14 +204,6 @@ static inline int x2apic_enabled(void) | |||
204 | 204 | ||
205 | extern int get_physical_broadcast(void); | 205 | extern int get_physical_broadcast(void); |
206 | 206 | ||
207 | #ifdef CONFIG_X86_X2APIC | ||
208 | static inline void ack_x2APIC_irq(void) | ||
209 | { | ||
210 | /* Docs say use 0 for future compatibility */ | ||
211 | native_apic_msr_write(APIC_EOI, 0); | ||
212 | } | ||
213 | #endif | ||
214 | |||
215 | extern void apic_disable(void); | 207 | extern void apic_disable(void); |
216 | extern int lapic_get_maxlvt(void); | 208 | extern int lapic_get_maxlvt(void); |
217 | extern void clear_local_APIC(void); | 209 | extern void clear_local_APIC(void); |