aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2008-12-10 14:41:06 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2008-12-10 14:41:06 -0800
commitf9fc05e7620b3ffc93eeeda6d02fc70436676152 (patch)
tree2934c5c638af9c5ef977b64c7b2175653461bf3a /kernel
parentfix mapping_writably_mapped() (diff)
parentsched: CPU remove deadlock fix (diff)
downloadlinux-dev-f9fc05e7620b3ffc93eeeda6d02fc70436676152.tar.xz
linux-dev-f9fc05e7620b3ffc93eeeda6d02fc70436676152.zip
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: CPU remove deadlock fix
Diffstat (limited to 'kernel')
-rw-r--r--kernel/sched.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/sched.c b/kernel/sched.c
index b7480fb5c3dc..e4bb1dd7b308 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -6587,7 +6587,9 @@ migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
req = list_entry(rq->migration_queue.next,
struct migration_req, list);
list_del_init(&req->list);
+ spin_unlock_irq(&rq->lock);
complete(&req->done);
+ spin_lock_irq(&rq->lock);
}
spin_unlock_irq(&rq->lock);
break;