Skip to content

Commit

Permalink
[PATCH] Make __always_inline actually force always inlining
Browse files Browse the repository at this point in the history
This patch is the first in a series that tries to optimize the kernel in terms
of size (and thus cache behavior, both cpu and pagecache).

This first patch changes __always_inline to be a forced inline instead of the
"regular" inline it was on everything except alpha.  This forced inline
matches the intention of the define better as a matter of documentation.
There is no change in behavior by this patch, since "inline" currently is
mapped to a forced inline anyway.

Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Arjan van de Ven <arjan@infradead.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Ingo Molnar authored and Linus Torvalds committed Jan 15, 2006
1 parent 9eb8ef7 commit 40fc55c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions include/linux/compiler-gcc3.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@
#define __must_check __attribute__((warn_unused_result))
#endif

#define __always_inline inline __attribute__((always_inline))
2 changes: 1 addition & 1 deletion include/linux/compiler-gcc4.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
#define __attribute_used__ __attribute__((__used__))
#define __must_check __attribute__((warn_unused_result))
#define __compiler_offsetof(a,b) __builtin_offsetof(a,b)

#define __always_inline inline __attribute__((always_inline))

0 comments on commit 40fc55c

Please sign in to comment.