aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/sched.c
diff options
context:
space:
mode:
authorGregory Haskins <ghaskins@novell.com>2009-07-30 10:57:23 -0400
committerIngo Molnar <mingo@elte.hu>2009-08-02 08:26:12 -0400
commit00aec93d10a051ea64f83eff75d4065a19508ea6 (patch)
tree010148caeaf4d4b36188ba15828343aa6c74efc9 /kernel/sched.c
parent3f029d3c6d62068d59301d90c18dbde8ee402107 (diff)
sched: Fully integrate cpus_active_map and root-domain code
Reflect "active" cpus in the rq->rd->online field, instead of the online_map. The motivation is that things that use the root-domain code (such as cpupri) only care about cpus classified as "active" anyway. By synchronizing the root-domain state with the active map, we allow several optimizations. For instance, we can remove an extra cpumask_and from the scheduler hotpath by utilizing rq->rd->online (since it is now a cached version of cpu_active_map & rq->rd->span). Signed-off-by: Gregory Haskins <ghaskins@novell.com> Acked-by: Peter Zijlstra <peterz@infradead.org> Acked-by: Max Krasnyansky <maxk@qualcomm.com> Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl> LKML-Reference: <20090730145723.25226.24493.stgit@dev.haskins.net> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/sched.c')
-rw-r--r--kernel/sched.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/sched.c b/kernel/sched.c
index 613fee54fc89..475138c42548 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -7927,7 +7927,7 @@ static void rq_attach_root(struct rq *rq, struct root_domain *rd)
7927 rq->rd = rd; 7927 rq->rd = rd;
7928 7928
7929 cpumask_set_cpu(rq->cpu, rd->span); 7929 cpumask_set_cpu(rq->cpu, rd->span);
7930 if (cpumask_test_cpu(rq->cpu, cpu_online_mask)) 7930 if (cpumask_test_cpu(rq->cpu, cpu_active_mask))
7931 set_rq_online(rq); 7931 set_rq_online(rq);
7932 7932
7933 spin_unlock_irqrestore(&rq->lock, flags); 7933 spin_unlock_irqrestore(&rq->lock, flags);