idt.c (720909a7abd351535bfb485a0ecce03c2e4467e2) idt.c (9c3b1f4975c46fc2932fd6d53e63c14f0ddf985f)
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Interrupt descriptor table related code
4 */
5#include <linux/interrupt.h>
6
7#include <asm/traps.h>
8#include <asm/proto.h>

--- 121 unchanged lines hidden (view full) ---

130#ifdef CONFIG_X86_MCE_AMD
131 INTG(DEFERRED_ERROR_VECTOR, asm_sysvec_deferred_error),
132#endif
133
134#ifdef CONFIG_X86_LOCAL_APIC
135 INTG(LOCAL_TIMER_VECTOR, asm_sysvec_apic_timer_interrupt),
136 INTG(X86_PLATFORM_IPI_VECTOR, asm_sysvec_x86_platform_ipi),
137# ifdef CONFIG_HAVE_KVM
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Interrupt descriptor table related code
4 */
5#include <linux/interrupt.h>
6
7#include <asm/traps.h>
8#include <asm/proto.h>

--- 121 unchanged lines hidden (view full) ---

130#ifdef CONFIG_X86_MCE_AMD
131 INTG(DEFERRED_ERROR_VECTOR, asm_sysvec_deferred_error),
132#endif
133
134#ifdef CONFIG_X86_LOCAL_APIC
135 INTG(LOCAL_TIMER_VECTOR, asm_sysvec_apic_timer_interrupt),
136 INTG(X86_PLATFORM_IPI_VECTOR, asm_sysvec_x86_platform_ipi),
137# ifdef CONFIG_HAVE_KVM
138 INTG(POSTED_INTR_VECTOR, kvm_posted_intr_ipi),
139 INTG(POSTED_INTR_WAKEUP_VECTOR, kvm_posted_intr_wakeup_ipi),
140 INTG(POSTED_INTR_NESTED_VECTOR, kvm_posted_intr_nested_ipi),
138 INTG(POSTED_INTR_VECTOR, asm_sysvec_kvm_posted_intr_ipi),
139 INTG(POSTED_INTR_WAKEUP_VECTOR, asm_sysvec_kvm_posted_intr_wakeup_ipi),
140 INTG(POSTED_INTR_NESTED_VECTOR, asm_sysvec_kvm_posted_intr_nested_ipi),
141# endif
142# ifdef CONFIG_IRQ_WORK
143 INTG(IRQ_WORK_VECTOR, asm_sysvec_irq_work),
144# endif
145# ifdef CONFIG_X86_UV
146 INTG(UV_BAU_MESSAGE, asm_sysvec_uv_bau_message),
147# endif
148 INTG(SPURIOUS_APIC_VECTOR, asm_sysvec_spurious_apic_interrupt),

--- 225 unchanged lines hidden ---
141# endif
142# ifdef CONFIG_IRQ_WORK
143 INTG(IRQ_WORK_VECTOR, asm_sysvec_irq_work),
144# endif
145# ifdef CONFIG_X86_UV
146 INTG(UV_BAU_MESSAGE, asm_sysvec_uv_bau_message),
147# endif
148 INTG(SPURIOUS_APIC_VECTOR, asm_sysvec_spurious_apic_interrupt),

--- 225 unchanged lines hidden ---