diff options
author | Borislav Petkov <bp@suse.de> | 2020-04-04 01:33:05 +0200 |
---|---|---|
committer | Borislav Petkov <bp@suse.de> | 2020-04-14 14:24:05 +0200 |
commit | 593309423cbad0fab659a685834416cf12d8f581 (patch) | |
tree | 16cf472c78d953b15ca67886ab1387f03c1841ef /arch/x86/include/asm/doublefault.h | |
parent | 8f3d9f354286745c751374f5f1fcafee6b3f3136 (diff) | |
download | lwn-593309423cbad0fab659a685834416cf12d8f581.tar.gz lwn-593309423cbad0fab659a685834416cf12d8f581.zip |
x86/32: Remove CONFIG_DOUBLEFAULT
Make the doublefault exception handler unconditional on 32-bit. Yes,
it is important to be able to catch #DF exceptions instead of silent
reboots. Yes, the code size increase is worth every byte. And one less
CONFIG symbol is just the cherry on top.
No functional changes.
Signed-off-by: Borislav Petkov <bp@suse.de>
Acked-by: Andy Lutomirski <luto@kernel.org>
Link: https://lkml.kernel.org/r/20200404083646.8897-1-bp@alien8.de
Diffstat (limited to 'arch/x86/include/asm/doublefault.h')
-rw-r--r-- | arch/x86/include/asm/doublefault.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/doublefault.h b/arch/x86/include/asm/doublefault.h index af9a14ac8962..54a6e4a2e132 100644 --- a/arch/x86/include/asm/doublefault.h +++ b/arch/x86/include/asm/doublefault.h @@ -2,7 +2,7 @@ #ifndef _ASM_X86_DOUBLEFAULT_H #define _ASM_X86_DOUBLEFAULT_H -#if defined(CONFIG_X86_32) && defined(CONFIG_DOUBLEFAULT) +#ifdef CONFIG_X86_32 extern void doublefault_init_cpu_tss(void); #else static inline void doublefault_init_cpu_tss(void) |