diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-06-30 08:57:19 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-06-30 08:57:19 -0700 |
commit | e6100f23375c0c71ce595d04551fa6553b611918 (patch) | |
tree | 194b0cdcd21d91f118dc75680d78f66b883d39fe | |
parent | bbad5d4750ab3b44a196f9bdd982972e41b7e520 (diff) | |
parent | 79c537998d143b127c8c662a403c3356cb885f1c (diff) |
Merge branch 'sched-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'sched-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
sched: fix cpu hotplug
-rw-r--r-- | kernel/sched.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/sched.c b/kernel/sched.c index 3aaa5c8cb42..a66e85639de 100644 --- a/kernel/sched.c +++ b/kernel/sched.c @@ -5887,6 +5887,7 @@ static void migrate_dead_tasks(unsigned int dead_cpu) next = pick_next_task(rq, rq->curr); if (!next) break; + next->sched_class->put_prev_task(rq, next); migrate_dead(dead_cpu, next); } |