aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/x86/Kconfig3
-rw-r--r--include/linux/compiler-gcc.h3
2 files changed, 5 insertions, 1 deletions
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
index 4d350b5cbc71..3b6ff3b4ad20 100644
--- a/arch/x86/Kconfig
+++ b/arch/x86/Kconfig
@@ -142,6 +142,9 @@ config AUDIT_ARCH
142config ARCH_SUPPORTS_AOUT 142config ARCH_SUPPORTS_AOUT
143 def_bool y 143 def_bool y
144 144
145config ARCH_SUPPORTS_OPTIMIZED_INLINING
146 def_bool y
147
145# Use the generic interrupt handling code in kernel/irq/: 148# Use the generic interrupt handling code in kernel/irq/:
146config GENERIC_HARDIRQS 149config GENERIC_HARDIRQS
147 bool 150 bool
diff --git a/include/linux/compiler-gcc.h b/include/linux/compiler-gcc.h
index 340bc5d92772..b2fd7547b58d 100644
--- a/include/linux/compiler-gcc.h
+++ b/include/linux/compiler-gcc.h
@@ -31,7 +31,8 @@
31/* 31/*
32 * Force always-inline if the user requests it so via the .config: 32 * Force always-inline if the user requests it so via the .config:
33 */ 33 */
34#if !defined(CONFIG_OPTIMIZE_INLINING) && (__GNUC__ >= 4) 34#if !defined(CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING) || \
35 !defined(CONFIG_OPTIMIZE_INLINING) && (__GNUC__ >= 4)
35# define inline inline __attribute__((always_inline)) 36# define inline inline __attribute__((always_inline))
36# define __inline__ __inline__ __attribute__((always_inline)) 37# define __inline__ __inline__ __attribute__((always_inline))
37# define __inline __inline __attribute__((always_inline)) 38# define __inline __inline __attribute__((always_inline))