diff options
Diffstat (limited to 'arch/x86/include/asm/entry_arch.h')
| -rw-r--r-- | arch/x86/include/asm/entry_arch.h | 20 | 
1 files changed, 8 insertions, 12 deletions
diff --git a/arch/x86/include/asm/entry_arch.h b/arch/x86/include/asm/entry_arch.h index 57650ab4a5f..dc5fa661465 100644 --- a/arch/x86/include/asm/entry_arch.h +++ b/arch/x86/include/asm/entry_arch.h @@ -13,18 +13,18 @@  BUILD_INTERRUPT(reschedule_interrupt,RESCHEDULE_VECTOR)  BUILD_INTERRUPT(call_function_interrupt,CALL_FUNCTION_VECTOR)  BUILD_INTERRUPT(call_function_single_interrupt,CALL_FUNCTION_SINGLE_VECTOR) -BUILD_INTERRUPT(irq_move_cleanup_interrupt,IRQ_MOVE_CLEANUP_VECTOR) -BUILD_INTERRUPT(reboot_interrupt,REBOOT_VECTOR) - -.irpc idx, "01234567" -BUILD_INTERRUPT3(invalidate_interrupt\idx, -		 (INVALIDATE_TLB_VECTOR_START)+\idx, -		 smp_invalidate_interrupt) -.endr +BUILD_INTERRUPT3(irq_move_cleanup_interrupt, IRQ_MOVE_CLEANUP_VECTOR, +		 smp_irq_move_cleanup_interrupt) +BUILD_INTERRUPT3(reboot_interrupt, REBOOT_VECTOR, smp_reboot_interrupt)  #endif  BUILD_INTERRUPT(x86_platform_ipi, X86_PLATFORM_IPI_VECTOR) +#ifdef CONFIG_HAVE_KVM +BUILD_INTERRUPT3(kvm_posted_intr_ipi, POSTED_INTR_VECTOR, +		 smp_kvm_posted_intr_ipi) +#endif +  /*   * every pentium local APIC has two 'local interrupts', with a   * soft-definable vector attached to both interrupts, one of @@ -50,8 +50,4 @@ BUILD_INTERRUPT(thermal_interrupt,THERMAL_APIC_VECTOR)  BUILD_INTERRUPT(threshold_interrupt,THRESHOLD_APIC_VECTOR)  #endif -#ifdef CONFIG_X86_MCE -BUILD_INTERRUPT(mce_self_interrupt,MCE_SELF_VECTOR) -#endif -  #endif  | 
