From: Peter Zijlstra Date: Wed, 17 Jun 2020 16:25:57 +0000 (+0200) Subject: x86/entry: Increase entry_stack size to a full page X-Git-Tag: microblaze-v5.10~422^2~2 X-Git-Url: http://git.monstr.eu/?a=commitdiff_plain;h=c7aadc09321d8f9a1d3bd1e6d8a47222ecddf6c5;p=linux-2.6-microblaze.git x86/entry: Increase entry_stack size to a full page Marco crashed in bad_iret with a Clang11/KCSAN build due to overflowing the stack. Now that we run C code on it, expand it to a full page. Suggested-by: Andy Lutomirski Reported-by: Marco Elver Signed-off-by: Peter Zijlstra (Intel) Reviewed-by: Lai Jiangshan Tested-by: Marco Elver Link: https://lkml.kernel.org/r/20200618144801.819246178@infradead.org --- diff --git a/arch/x86/include/asm/processor.h b/arch/x86/include/asm/processor.h index 42cd333616c4..03b7c4ca425a 100644 --- a/arch/x86/include/asm/processor.h +++ b/arch/x86/include/asm/processor.h @@ -370,7 +370,7 @@ struct x86_hw_tss { #define IO_BITMAP_OFFSET_INVALID (__KERNEL_TSS_LIMIT + 1) struct entry_stack { - unsigned long words[64]; + char stack[PAGE_SIZE]; }; struct entry_stack_page {