From: Ingo Molnar Arjan van de Ven Mark a number of functions as 'must inline'. The functions affected by this patch need to be inlined because they use knowledge that their arguments are constant so that most of the function optimizes away. At this point this patch does not change behavior, it's for documentation only (and for future patches in the inline series) Signed-off-by: Ingo Molnar Signed-off-by: Arjan van de Ven Signed-off-by: Andrew Morton --- include/asm-i386/bitops.h | 2 +- include/asm-i386/current.h | 2 +- include/asm-i386/string.h | 8 ++++---- include/asm-i386/uaccess.h | 8 ++++---- include/asm-x86_64/uaccess.h | 6 +++--- include/linux/mm.h | 2 +- 6 files changed, 14 insertions(+), 14 deletions(-) diff -puN include/asm-i386/bitops.h~mark-several-functions-__always_inline include/asm-i386/bitops.h --- 25/include/asm-i386/bitops.h~mark-several-functions-__always_inline Fri Jan 13 17:54:38 2006 +++ 25-akpm/include/asm-i386/bitops.h Fri Jan 13 17:54:38 2006 @@ -247,7 +247,7 @@ static inline int test_and_change_bit(in static int test_bit(int nr, const volatile void * addr); #endif -static inline int constant_test_bit(int nr, const volatile unsigned long *addr) +static __always_inline int constant_test_bit(int nr, const volatile unsigned long *addr) { return ((1UL << (nr & 31)) & (addr[nr >> 5])) != 0; } diff -puN include/asm-i386/current.h~mark-several-functions-__always_inline include/asm-i386/current.h --- 25/include/asm-i386/current.h~mark-several-functions-__always_inline Fri Jan 13 17:54:38 2006 +++ 25-akpm/include/asm-i386/current.h Fri Jan 13 17:54:38 2006 @@ -5,7 +5,7 @@ struct task_struct; -static inline struct task_struct * get_current(void) +static __always_inline struct task_struct * get_current(void) { return current_thread_info()->task; } diff -puN include/asm-i386/string.h~mark-several-functions-__always_inline include/asm-i386/string.h --- 25/include/asm-i386/string.h~mark-several-functions-__always_inline Fri Jan 13 17:54:38 2006 +++ 25-akpm/include/asm-i386/string.h Fri Jan 13 17:54:38 2006 @@ -201,7 +201,7 @@ __asm__ __volatile__( return __res; } -static inline void * __memcpy(void * to, const void * from, size_t n) +static __always_inline void * __memcpy(void * to, const void * from, size_t n) { int d0, d1, d2; __asm__ __volatile__( @@ -223,7 +223,7 @@ return (to); * This looks ugly, but the compiler can optimize it totally, * as the count is constant. */ -static inline void * __constant_memcpy(void * to, const void * from, size_t n) +static __always_inline void * __constant_memcpy(void * to, const void * from, size_t n) { long esi, edi; if (!n) return to; @@ -367,7 +367,7 @@ return s; * things 32 bits at a time even when we don't know the size of the * area at compile-time.. */ -static inline void * __constant_c_memset(void * s, unsigned long c, size_t count) +static __always_inline void * __constant_c_memset(void * s, unsigned long c, size_t count) { int d0, d1; __asm__ __volatile__( @@ -416,7 +416,7 @@ extern char *strstr(const char *cs, cons * This looks horribly ugly, but the compiler can optimize it totally, * as we by now know that both pattern and count is constant.. */ -static inline void * __constant_c_and_count_memset(void * s, unsigned long pattern, size_t count) +static __always_inline void * __constant_c_and_count_memset(void * s, unsigned long pattern, size_t count) { switch (count) { case 0: diff -puN include/asm-i386/uaccess.h~mark-several-functions-__always_inline include/asm-i386/uaccess.h --- 25/include/asm-i386/uaccess.h~mark-several-functions-__always_inline Fri Jan 13 17:54:38 2006 +++ 25-akpm/include/asm-i386/uaccess.h Fri Jan 13 17:54:38 2006 @@ -413,7 +413,7 @@ unsigned long __must_check __copy_from_u * Returns number of bytes that could not be copied. * On success, this will be zero. */ -static inline unsigned long __must_check +static __always_inline unsigned long __must_check __copy_to_user_inatomic(void __user *to, const void *from, unsigned long n) { if (__builtin_constant_p(n)) { @@ -434,7 +434,7 @@ __copy_to_user_inatomic(void __user *to, return __copy_to_user_ll(to, from, n); } -static inline unsigned long __must_check +static __always_inline unsigned long __must_check __copy_to_user(void __user *to, const void *from, unsigned long n) { might_sleep(); @@ -458,7 +458,7 @@ __copy_to_user(void __user *to, const vo * If some data could not be copied, this function will pad the copied * data to the requested size using zero bytes. */ -static inline unsigned long +static __always_inline unsigned long __copy_from_user_inatomic(void *to, const void __user *from, unsigned long n) { if (__builtin_constant_p(n)) { @@ -502,7 +502,7 @@ static inline unsigned long __copy_from_ return __copy_from_user_ll_nocache(to, from, n); } -static inline unsigned long +static __always_inline unsigned long __copy_from_user(void *to, const void __user *from, unsigned long n) { might_sleep(); diff -puN include/asm-x86_64/uaccess.h~mark-several-functions-__always_inline include/asm-x86_64/uaccess.h --- 25/include/asm-x86_64/uaccess.h~mark-several-functions-__always_inline Fri Jan 13 17:54:38 2006 +++ 25-akpm/include/asm-x86_64/uaccess.h Fri Jan 13 17:54:38 2006 @@ -244,7 +244,7 @@ extern unsigned long copy_to_user(void _ extern unsigned long copy_from_user(void *to, const void __user *from, unsigned len); extern unsigned long copy_in_user(void __user *to, const void __user *from, unsigned len); -static inline int __copy_from_user(void *dst, const void __user *src, unsigned size) +static __always_inline int __copy_from_user(void *dst, const void __user *src, unsigned size) { int ret = 0; if (!__builtin_constant_p(size)) @@ -273,7 +273,7 @@ static inline int __copy_from_user(void } } -static inline int __copy_to_user(void __user *dst, const void *src, unsigned size) +static __always_inline int __copy_to_user(void __user *dst, const void *src, unsigned size) { int ret = 0; if (!__builtin_constant_p(size)) @@ -305,7 +305,7 @@ static inline int __copy_to_user(void __ } -static inline int __copy_in_user(void __user *dst, const void __user *src, unsigned size) +static __always_inline int __copy_in_user(void __user *dst, const void __user *src, unsigned size) { int ret = 0; if (!__builtin_constant_p(size)) diff -puN include/linux/mm.h~mark-several-functions-__always_inline include/linux/mm.h --- 25/include/linux/mm.h~mark-several-functions-__always_inline Fri Jan 13 17:54:38 2006 +++ 25-akpm/include/linux/mm.h Fri Jan 13 17:54:38 2006 @@ -512,7 +512,7 @@ static inline void set_page_links(struct extern struct page *mem_map; #endif -static inline void *lowmem_page_address(struct page *page) +static __always_inline void *lowmem_page_address(struct page *page) { return __va(page_to_pfn(page) << PAGE_SHIFT); } _