diff options
author | Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com> | 2009-02-18 02:24:03 -0500 |
---|---|---|
committer | Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com> | 2009-03-30 02:35:59 -0400 |
commit | 7fd7d83d49914f03aefffba6aee09032fcd54cce (patch) | |
tree | 8c9f5b95f6b63b5d28887f47d92a6c79139eac5f /kernel | |
parent | b8bcfe997e46150fedcc3f5b26b846400122fdd9 (diff) |
x86/pvops: replace arch_enter_lazy_cpu_mode with arch_start_context_switch
Impact: simplification, prepare for later changes
Make lazy cpu mode more specific to context switching, so that
it makes sense to do more context-switch specific things in
the callbacks.
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Acked-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/sched.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/sched.c b/kernel/sched.c index 5757e03cfac0..7530fdd7c982 100644 --- a/kernel/sched.c +++ b/kernel/sched.c | |||
@@ -2746,7 +2746,7 @@ context_switch(struct rq *rq, struct task_struct *prev, | |||
2746 | * combine the page table reload and the switch backend into | 2746 | * combine the page table reload and the switch backend into |
2747 | * one hypercall. | 2747 | * one hypercall. |
2748 | */ | 2748 | */ |
2749 | arch_enter_lazy_cpu_mode(); | 2749 | arch_start_context_switch(); |
2750 | 2750 | ||
2751 | if (unlikely(!mm)) { | 2751 | if (unlikely(!mm)) { |
2752 | next->active_mm = oldmm; | 2752 | next->active_mm = oldmm; |