Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 93595
b: refs/heads/master
c: 765c68b
h: refs/heads/master
i:
  93593: af4ca29
  93591: 9dfe7ea
v: v3
  • Loading branch information
Ingo Molnar committed Apr 26, 2008
1 parent caec371 commit b0a257d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 60a3cdd0639473c79c253bc08c8ef8f882cca107
refs/heads/master: 765c68bd54c76d4126796e49af2a1428a258429f
3 changes: 3 additions & 0 deletions trunk/arch/x86/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,9 @@ config AUDIT_ARCH
config ARCH_SUPPORTS_AOUT
def_bool y

config ARCH_SUPPORTS_OPTIMIZED_INLINING
def_bool y

# Use the generic interrupt handling code in kernel/irq/:
config GENERIC_HARDIRQS
bool
Expand Down
3 changes: 2 additions & 1 deletion trunk/include/linux/compiler-gcc.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@
/*
* Force always-inline if the user requests it so via the .config:
*/
#if !defined(CONFIG_OPTIMIZE_INLINING) && (__GNUC__ >= 4)
#if !defined(CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING) || \
!defined(CONFIG_OPTIMIZE_INLINING) && (__GNUC__ >= 4)
# define inline inline __attribute__((always_inline))
# define __inline__ __inline__ __attribute__((always_inline))
# define __inline __inline __attribute__((always_inline))
Expand Down

0 comments on commit b0a257d

Please sign in to comment.