From: Peter Zijlstra Date: Thu, 5 Mar 2020 13:01:25 +0000 (+0100) Subject: x86/entry: Exclude low level entry code from sanitizing X-Git-Tag: microblaze-v5.10~516^2~131 X-Git-Url: http://git.monstr.eu/?a=commitdiff_plain;h=20355e5f73a75e58cee4c80d4cd92ce0d1628023;p=linux-2.6-microblaze.git x86/entry: Exclude low level entry code from sanitizing The sanitizers are not really applicable to the fragile low level entry code. Entry code needs to carefully setup a normal 'runtime' environment. Signed-off-by: Peter Zijlstra (Intel) Signed-off-by: Thomas Gleixner Reviewed-by: Alexandre Chartre Link: https://lkml.kernel.org/r/20200505134059.970057117@linutronix.de --- diff --git a/arch/x86/entry/Makefile b/arch/x86/entry/Makefile index 85eb381259c2..cdf45ff92dc8 100644 --- a/arch/x86/entry/Makefile +++ b/arch/x86/entry/Makefile @@ -3,6 +3,14 @@ # Makefile for the x86 low level entry code # +KASAN_SANITIZE := n +UBSAN_SANITIZE := n +KCOV_INSTRUMENT := n + +CFLAGS_REMOVE_common.o = $(CC_FLAGS_FTRACE) -fstack-protector -fstack-protector-strong +CFLAGS_REMOVE_syscall_32.o = $(CC_FLAGS_FTRACE) -fstack-protector -fstack-protector-strong +CFLAGS_REMOVE_syscall_64.o = $(CC_FLAGS_FTRACE) -fstack-protector -fstack-protector-strong + OBJECT_FILES_NON_STANDARD_entry_64_compat.o := y CFLAGS_syscall_64.o += $(call cc-option,-Wno-override-init,)