diff options
author | Peter Zijlstra <peterz@infradead.org> | 2018-01-17 05:42:07 -0500 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2018-03-20 05:58:02 -0400 |
commit | e501ce957a786ecd076ea0cfb10b114e6e4d0f40 (patch) | |
tree | 93beb08eb9a78f81c80866baf25f7472df35b955 | |
parent | edc39c9b4589a4ce9a69273b5a27a1459c3423d4 (diff) |
x86: Force asm-goto
We want to start using asm-goto to guarantee the absence of dynamic
branches (and thus speculation).
A primary prerequisite for this is of course that the compiler
supports asm-goto. This effecively lifts the minimum GCC version to
build an x86 kernel to gcc-4.5.
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: torvalds@linux-foundation.org
Link: https://lkml.kernel.org/r/20180319201327.GJ4043@hirez.programming.kicks-ass.net
-rw-r--r-- | Makefile | 13 | ||||
-rw-r--r-- | arch/x86/Makefile | 4 |
2 files changed, 11 insertions, 6 deletions
@@ -494,6 +494,13 @@ RETPOLINE_CFLAGS_CLANG := -mretpoline-external-thunk | |||
494 | RETPOLINE_CFLAGS := $(call cc-option,$(RETPOLINE_CFLAGS_GCC),$(call cc-option,$(RETPOLINE_CFLAGS_CLANG))) | 494 | RETPOLINE_CFLAGS := $(call cc-option,$(RETPOLINE_CFLAGS_GCC),$(call cc-option,$(RETPOLINE_CFLAGS_CLANG))) |
495 | export RETPOLINE_CFLAGS | 495 | export RETPOLINE_CFLAGS |
496 | 496 | ||
497 | # check for 'asm goto' | ||
498 | ifeq ($(call shell-cached,$(CONFIG_SHELL) $(srctree)/scripts/gcc-goto.sh $(CC) $(KBUILD_CFLAGS)), y) | ||
499 | CC_HAVE_ASM_GOTO := 1 | ||
500 | KBUILD_CFLAGS += -DCC_HAVE_ASM_GOTO | ||
501 | KBUILD_AFLAGS += -DCC_HAVE_ASM_GOTO | ||
502 | endif | ||
503 | |||
497 | ifeq ($(config-targets),1) | 504 | ifeq ($(config-targets),1) |
498 | # =========================================================================== | 505 | # =========================================================================== |
499 | # *config targets only - make sure prerequisites are updated, and descend | 506 | # *config targets only - make sure prerequisites are updated, and descend |
@@ -658,12 +665,6 @@ KBUILD_CFLAGS += $(call cc-ifversion, -lt, 0409, \ | |||
658 | # Tell gcc to never replace conditional load with a non-conditional one | 665 | # Tell gcc to never replace conditional load with a non-conditional one |
659 | KBUILD_CFLAGS += $(call cc-option,--param=allow-store-data-races=0) | 666 | KBUILD_CFLAGS += $(call cc-option,--param=allow-store-data-races=0) |
660 | 667 | ||
661 | # check for 'asm goto' | ||
662 | ifeq ($(call shell-cached,$(CONFIG_SHELL) $(srctree)/scripts/gcc-goto.sh $(CC) $(KBUILD_CFLAGS)), y) | ||
663 | KBUILD_CFLAGS += -DCC_HAVE_ASM_GOTO | ||
664 | KBUILD_AFLAGS += -DCC_HAVE_ASM_GOTO | ||
665 | endif | ||
666 | |||
667 | include scripts/Makefile.kcov | 668 | include scripts/Makefile.kcov |
668 | include scripts/Makefile.gcc-plugins | 669 | include scripts/Makefile.gcc-plugins |
669 | 670 | ||
diff --git a/arch/x86/Makefile b/arch/x86/Makefile index 498c1b812300..d798e36d103c 100644 --- a/arch/x86/Makefile +++ b/arch/x86/Makefile | |||
@@ -181,6 +181,10 @@ ifdef CONFIG_FUNCTION_GRAPH_TRACER | |||
181 | endif | 181 | endif |
182 | endif | 182 | endif |
183 | 183 | ||
184 | ifndef CC_HAVE_ASM_GOTO | ||
185 | $(error Compiler lacks asm-goto support.) | ||
186 | endif | ||
187 | |||
184 | # | 188 | # |
185 | # Jump labels need '-maccumulate-outgoing-args' for gcc < 4.5.2 to prevent a | 189 | # Jump labels need '-maccumulate-outgoing-args' for gcc < 4.5.2 to prevent a |
186 | # GCC bug (https://gcc.gnu.org/bugzilla/show_bug.cgi?id=46226). There's no way | 190 | # GCC bug (https://gcc.gnu.org/bugzilla/show_bug.cgi?id=46226). There's no way |