[PATCH rt/2.6.31] [RT] kernel/sched.c: Fixup of "implicit declaration of function '_finish_arch_switch'"

From: Wu Zhangjin
Date: Wed Jan 27 2010 - 10:19:15 EST


From: Wu Zhangjin <wuzhangjin@xxxxxxxxx>

This patch fixes the following error:

kernel/sched.c: In function 'finish_task_switch':
kernel/sched.c:2979: error: implicit declaration of function
'_finish_arch_switch'

The following archs have defined their finish_arch_switch:

$ grep finish_arch_switch -ur arch/
arch/s390/include/asm/system.h:#define finish_arch_switch(prev)
arch/sh/include/asm/system_32.h:#define finish_arch_switch(prev
arch/avr32/include/asm/system.h:#define finish_arch_switch(prev)
arch/mips/include/asm/system.h:#define finish_arch_switch(prev)

Signed-off-by: Wu Zhangjin <wuzhangjin@xxxxxxxxx>
---
kernel/sched.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/kernel/sched.c b/kernel/sched.c
index 590b9bb..739156e 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -959,6 +959,8 @@ static inline u64 global_rt_runtime(void)
#endif
#ifndef finish_arch_switch
# define _finish_arch_switch(prev) do { } while (0)
+#else
+# define _finish_arch_switc finish_arch_switch
#endif

static inline int task_current(struct rq *rq, struct task_struct *p)
--
1.6.6

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/