diff options
author | Steven Rostedt <srostedt@redhat.com> | 2010-09-23 03:10:23 (GMT) |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2010-09-23 03:10:23 (GMT) |
commit | 46eb3b64dddd20f44e76b08676fa642dd374bf1d (patch) | |
tree | 1e1bddd80f55fa073b5c0b2176e4c438ea2f852d /arch/x86/Kconfig | |
parent | 95fccd465eefb3d6bf80dae0496607b534d38313 (diff) | |
download | linux-46eb3b64dddd20f44e76b08676fa642dd374bf1d.tar.xz |
jump label/x86/sparc64: Remove !CC_OPTIMIZE_FOR_SIZE config conditions
The !CC_OPTIMIZE_FOR_SIZE was added to enable the jump label functionality
because Jason noticed that the gcc option would not optimize the labels
and may even hurt performance.
But this is a gcc problem not a kernel one. Removing this condition should
add motivation to the gcc developers to actually fix it.
Cc: Jason Baron <jbaron@redhat.com>
Acked-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'arch/x86/Kconfig')
-rw-r--r-- | arch/x86/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index afcd663..b431a08 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig @@ -59,7 +59,7 @@ config X86 select ANON_INODES select HAVE_ARCH_KMEMCHECK select HAVE_USER_RETURN_NOTIFIER - select HAVE_ARCH_JUMP_LABEL if !CC_OPTIMIZE_FOR_SIZE + select HAVE_ARCH_JUMP_LABEL config INSTRUCTION_DECODER def_bool (KPROBES || PERF_EVENTS) |