diff options
author | Mike Galbraith <efault@gmx.de> | 2009-11-05 04:57:46 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-11-05 05:01:39 -0500 |
commit | fd210738f6601d0fb462df9a2fe5a41896ff6a8f (patch) | |
tree | 0f4488bd171590ed33930edf7684449b9437f11c /kernel | |
parent | 1b9508f6831e10d53256825de8904caa22d1ca2c (diff) |
sched: Fix affinity logic in select_task_rq_fair()
Ingo Molnar reported:
[ 26.804000] BUG: using smp_processor_id() in preemptible [00000000] code: events/1/10
[ 26.808000] caller is vmstat_update+0x26/0x70
[ 26.812000] Pid: 10, comm: events/1 Not tainted 2.6.32-rc5 #6887
[ 26.816000] Call Trace:
[ 26.820000] [<c1924a24>] ? printk+0x28/0x3c
[ 26.824000] [<c13258a0>] debug_smp_processor_id+0xf0/0x110
[ 26.824000] mount used greatest stack depth: 1464 bytes left
[ 26.828000] [<c111d086>] vmstat_update+0x26/0x70
[ 26.832000] [<c1086418>] worker_thread+0x188/0x310
[ 26.836000] [<c10863b7>] ? worker_thread+0x127/0x310
[ 26.840000] [<c108d310>] ? autoremove_wake_function+0x0/0x60
[ 26.844000] [<c1086290>] ? worker_thread+0x0/0x310
[ 26.848000] [<c108cf0c>] kthread+0x7c/0x90
[ 26.852000] [<c108ce90>] ? kthread+0x0/0x90
[ 26.856000] [<c100c0a7>] kernel_thread_helper+0x7/0x10
[ 26.860000] BUG: using smp_processor_id() in preemptible [00000000] code: events/1/10
[ 26.864000] caller is vmstat_update+0x3c/0x70
Because this commit:
a1f84a3: sched: Check for an idle shared cache in select_task_rq_fair()
broke ->cpus_allowed.
Signed-off-by: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: arjan@infradead.org
Cc: <stable@kernel.org>
LKML-Reference: <1257415066.12867.1.camel@marge.simson.net>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/sched_fair.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/sched_fair.c b/kernel/sched_fair.c index da87385683cc..e4d4483fd617 100644 --- a/kernel/sched_fair.c +++ b/kernel/sched_fair.c | |||
@@ -1389,6 +1389,8 @@ static int select_task_rq_fair(struct task_struct *p, int sd_flag, int wake_flag | |||
1389 | 1389 | ||
1390 | if (candidate == -1 || candidate == cpu) { | 1390 | if (candidate == -1 || candidate == cpu) { |
1391 | for_each_cpu(i, sched_domain_span(tmp)) { | 1391 | for_each_cpu(i, sched_domain_span(tmp)) { |
1392 | if (!cpumask_test_cpu(i, &p->cpus_allowed)) | ||
1393 | continue; | ||
1392 | if (!cpu_rq(i)->cfs.nr_running) { | 1394 | if (!cpu_rq(i)->cfs.nr_running) { |
1393 | candidate = i; | 1395 | candidate = i; |
1394 | break; | 1396 | break; |