sched: wrap sched_group and sched_domain cpumask accesses.
Impact: trivial wrap of member accesses This eases the transition in the next patch. We also get rid of a temporary cpumask in find_idlest_cpu() thanks to for_each_cpu_and, and sched_balance_self() due to getting weight before setting sd to NULL. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
committed by
Ingo Molnar
parent
1e5ce4f4a7
commit
758b2cdc6f
@@ -1017,7 +1017,8 @@ static int find_lowest_rq(struct task_struct *task)
|
||||
cpumask_t domain_mask;
|
||||
int best_cpu;
|
||||
|
||||
cpus_and(domain_mask, sd->span, *lowest_mask);
|
||||
cpumask_and(&domain_mask, sched_domain_span(sd),
|
||||
lowest_mask);
|
||||
|
||||
best_cpu = pick_optimal_cpu(this_cpu,
|
||||
&domain_mask);
|
||||
|
Reference in New Issue
Block a user