mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-03 19:56:40 +07:00
a28680b4b8
Split out math_error from do_coprocessor_error and simd_math_error from do_simd_coprocessor_error, like on i386. While at it, add the "error_code" parameter to do_coprocessor_error, do_simd_coprocessor_error and do_spurious_interrupt_bug. This does not change the generated code, but brings the declarations in line with all the other trap handlers. Signed-off-by: Alexander van Heukelum <heukelum@fastmail.fm> Signed-off-by: Ingo Molnar <mingo@elte.hu>
83 lines
2.7 KiB
C
83 lines
2.7 KiB
C
#ifndef ASM_X86__TRAPS_H
|
|
#define ASM_X86__TRAPS_H
|
|
|
|
#include <asm/debugreg.h>
|
|
|
|
/* Common in X86_32 and X86_64 */
|
|
asmlinkage void divide_error(void);
|
|
asmlinkage void debug(void);
|
|
asmlinkage void nmi(void);
|
|
asmlinkage void int3(void);
|
|
asmlinkage void overflow(void);
|
|
asmlinkage void bounds(void);
|
|
asmlinkage void invalid_op(void);
|
|
asmlinkage void device_not_available(void);
|
|
asmlinkage void coprocessor_segment_overrun(void);
|
|
asmlinkage void invalid_TSS(void);
|
|
asmlinkage void segment_not_present(void);
|
|
asmlinkage void stack_segment(void);
|
|
asmlinkage void general_protection(void);
|
|
asmlinkage void page_fault(void);
|
|
asmlinkage void coprocessor_error(void);
|
|
asmlinkage void simd_coprocessor_error(void);
|
|
asmlinkage void alignment_check(void);
|
|
asmlinkage void spurious_interrupt_bug(void);
|
|
#ifdef CONFIG_X86_MCE
|
|
asmlinkage void machine_check(void);
|
|
#endif /* CONFIG_X86_MCE */
|
|
|
|
void do_divide_error(struct pt_regs *, long);
|
|
void do_overflow(struct pt_regs *, long);
|
|
void do_bounds(struct pt_regs *, long);
|
|
void do_coprocessor_segment_overrun(struct pt_regs *, long);
|
|
void do_invalid_TSS(struct pt_regs *, long);
|
|
void do_segment_not_present(struct pt_regs *, long);
|
|
void do_stack_segment(struct pt_regs *, long);
|
|
void do_alignment_check(struct pt_regs *, long);
|
|
void do_invalid_op(struct pt_regs *, long);
|
|
void do_general_protection(struct pt_regs *, long);
|
|
void do_nmi(struct pt_regs *, long);
|
|
|
|
static inline int get_si_code(unsigned long condition)
|
|
{
|
|
if (condition & DR_STEP)
|
|
return TRAP_TRACE;
|
|
else if (condition & (DR_TRAP0|DR_TRAP1|DR_TRAP2|DR_TRAP3))
|
|
return TRAP_HWBKPT;
|
|
else
|
|
return TRAP_BRKPT;
|
|
}
|
|
|
|
extern int panic_on_unrecovered_nmi;
|
|
extern int kstack_depth_to_print;
|
|
|
|
#ifdef CONFIG_X86_32
|
|
|
|
void do_iret_error(struct pt_regs *, long);
|
|
void do_int3(struct pt_regs *, long);
|
|
void do_debug(struct pt_regs *, long);
|
|
void math_error(void __user *);
|
|
void do_coprocessor_error(struct pt_regs *, long);
|
|
void do_simd_coprocessor_error(struct pt_regs *, long);
|
|
void do_spurious_interrupt_bug(struct pt_regs *, long);
|
|
unsigned long patch_espfix_desc(unsigned long, unsigned long);
|
|
asmlinkage void math_emulate(long);
|
|
|
|
void do_page_fault(struct pt_regs *regs, unsigned long error_code);
|
|
|
|
#else /* CONFIG_X86_32 */
|
|
|
|
asmlinkage void double_fault(void);
|
|
|
|
asmlinkage void do_int3(struct pt_regs *, long);
|
|
asmlinkage void do_stack_segment(struct pt_regs *, long);
|
|
asmlinkage void do_debug(struct pt_regs *, unsigned long);
|
|
asmlinkage void do_coprocessor_error(struct pt_regs *, long);
|
|
asmlinkage void do_simd_coprocessor_error(struct pt_regs *, long);
|
|
asmlinkage void do_spurious_interrupt_bug(struct pt_regs *, long);
|
|
|
|
asmlinkage void do_page_fault(struct pt_regs *regs, unsigned long error_code);
|
|
|
|
#endif /* CONFIG_X86_32 */
|
|
#endif /* ASM_X86__TRAPS_H */
|