x86/extable: Rework the exception table mechanics
[linux-2.6-microblaze.git] / arch / x86 / include / asm / extable_fixup_types.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_X86_EXTABLE_FIXUP_TYPES_H
3 #define _ASM_X86_EXTABLE_FIXUP_TYPES_H
4
5 #define EX_TYPE_NONE                     0
6 #define EX_TYPE_DEFAULT                  1
7 #define EX_TYPE_FAULT                    2
8 #define EX_TYPE_UACCESS                  3
9 #define EX_TYPE_COPY                     4
10 #define EX_TYPE_CLEAR_FS                 5
11 #define EX_TYPE_FPU_RESTORE              6
12 #define EX_TYPE_WRMSR                    7
13 #define EX_TYPE_RDMSR                    8
14 #define EX_TYPE_BPF                      9
15
16 #define EX_TYPE_WRMSR_IN_MCE            10
17 #define EX_TYPE_RDMSR_IN_MCE            11
18
19 #endif