Make wake_bit_function -> autoremove_wake_function call inlined. autoremove_wake_function cannot be put as static inline into headers, because reference to it is taken at some places. So use "inline" keyword that will make it both exported and inlinable in current file. Signed-off-by: Mikulas Patocka --- include/linux/wait.h | 2 +- kernel/sched.c | 17 ++++++++++++++++- kernel/wait.c | 15 --------------- 3 files changed, 17 insertions(+), 17 deletions(-) Index: linux-2.6.26-rc8/kernel/sched.c =================================================================== --- linux-2.6.26-rc8.orig/kernel/sched.c 2008-07-01 17:44:07.000000000 +0200 +++ linux-2.6.26-rc8/kernel/sched.c 2008-07-01 17:44:18.000000000 +0200 @@ -4283,7 +4283,7 @@ __always_inline int default_wake_functio } EXPORT_SYMBOL(default_wake_function); -int autoremove_wake_function(wait_queue_t *wait, unsigned mode, int sync, void *key) +__always_inline int autoremove_wake_function(wait_queue_t *wait, unsigned mode, int sync, void *key) { int ret = default_wake_function(wait, mode, sync, key); @@ -4293,6 +4293,21 @@ int autoremove_wake_function(wait_queue_ } EXPORT_SYMBOL(autoremove_wake_function); +int wake_bit_function(wait_queue_t *wait, unsigned mode, int sync, void *arg) +{ + struct wait_bit_key *key = arg; + struct wait_bit_queue *wait_bit + = container_of(wait, struct wait_bit_queue, wait); + + if (wait_bit->key.flags != key->flags || + wait_bit->key.bit_nr != key->bit_nr || + test_bit(key->bit_nr, key->flags)) + return 0; + else + return autoremove_wake_function(wait, mode, sync, key); +} +EXPORT_SYMBOL(wake_bit_function); + /* * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve Index: linux-2.6.26-rc8/kernel/wait.c =================================================================== --- linux-2.6.26-rc8.orig/kernel/wait.c 2008-07-01 17:44:07.000000000 +0200 +++ linux-2.6.26-rc8/kernel/wait.c 2008-07-01 17:44:18.000000000 +0200 @@ -127,21 +127,6 @@ void finish_wait(wait_queue_head_t *q, w } EXPORT_SYMBOL(finish_wait); -int wake_bit_function(wait_queue_t *wait, unsigned mode, int sync, void *arg) -{ - struct wait_bit_key *key = arg; - struct wait_bit_queue *wait_bit - = container_of(wait, struct wait_bit_queue, wait); - - if (wait_bit->key.flags != key->flags || - wait_bit->key.bit_nr != key->bit_nr || - test_bit(key->bit_nr, key->flags)) - return 0; - else - return autoremove_wake_function(wait, mode, sync, key); -} -EXPORT_SYMBOL(wake_bit_function); - /* * To allow interruptible waiting and asynchronous (i.e. nonblocking) * waiting, the actions of __wait_on_bit() and __wait_on_bit_lock() are Index: linux-2.6.26-rc8/include/linux/wait.h =================================================================== --- linux-2.6.26-rc8.orig/include/linux/wait.h 2008-07-01 17:44:07.000000000 +0200 +++ linux-2.6.26-rc8/include/linux/wait.h 2008-07-01 17:44:18.000000000 +0200 @@ -461,7 +461,7 @@ extern long interruptible_sleep_on_timeo void prepare_to_wait(wait_queue_head_t *q, wait_queue_t *wait, int state); void prepare_to_wait_exclusive(wait_queue_head_t *q, wait_queue_t *wait, int state); void finish_wait(wait_queue_head_t *q, wait_queue_t *wait); -int autoremove_wake_function(wait_queue_t *wait, unsigned mode, int sync, void *key); +__always_inline int autoremove_wake_function(wait_queue_t *wait, unsigned mode, int sync, void *key); int wake_bit_function(wait_queue_t *wait, unsigned mode, int sync, void *key); #define DEFINE_WAIT(name) \