diff options
author | Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> | 2006-03-31 05:30:24 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-31 15:18:52 -0500 |
commit | 54d8d3b5a0ce1cdbad1d3154c9ea9732d394e9c7 (patch) | |
tree | 129a29ab92fba7dc99229c87a38fe8df3ade7b15 /arch/um/kernel | |
parent | dd77aec07aec5cb81aed3b4ef79c1ff8bd0e2a68 (diff) |
[PATCH] uml: add arch_switch_to for newly forked thread
Newly forked threads have no arch_switch_to_skas() called before their first
run, because when schedule() switches to them they're resumed in the body of
thread_wait() inside fork_handler() rather than in switch_threads() in
switch_to_skas(). Compensate this missing call.
Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Acked-by: Jeff Dike <jdike@addtoit.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/um/kernel')
-rw-r--r-- | arch/um/kernel/skas/process_kern.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/um/kernel/skas/process_kern.c b/arch/um/kernel/skas/process_kern.c index 38b185370c42..2135eaf98a93 100644 --- a/arch/um/kernel/skas/process_kern.c +++ b/arch/um/kernel/skas/process_kern.c | |||
@@ -91,10 +91,17 @@ void fork_handler(int sig) | |||
91 | panic("blech"); | 91 | panic("blech"); |
92 | 92 | ||
93 | schedule_tail(current->thread.prev_sched); | 93 | schedule_tail(current->thread.prev_sched); |
94 | |||
95 | /* XXX: if interrupt_end() calls schedule, this call to | ||
96 | * arch_switch_to_skas isn't needed. We could want to apply this to | ||
97 | * improve performance. -bb */ | ||
98 | arch_switch_to_skas(current->thread.prev_sched, current); | ||
99 | |||
94 | current->thread.prev_sched = NULL; | 100 | current->thread.prev_sched = NULL; |
95 | 101 | ||
96 | /* Handle any immediate reschedules or signals */ | 102 | /* Handle any immediate reschedules or signals */ |
97 | interrupt_end(); | 103 | interrupt_end(); |
104 | |||
98 | userspace(¤t->thread.regs.regs); | 105 | userspace(¤t->thread.regs.regs); |
99 | } | 106 | } |
100 | 107 | ||