aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/sched.c
diff options
context:
space:
mode:
authorMiao Xie <miaox@cn.fujitsu.com>2009-04-14 21:59:10 -0400
committerIngo Molnar <mingo@elte.hu>2009-04-15 07:34:07 -0400
commit13318a7186d8e0ae08c996ea4111a945e7789772 (patch)
tree1260da0d89fae5cd50419cfdba8cf0a7ee352c37 /kernel/sched.c
parent78ddb08feb7d4fbe3c0a9931804c51ee58be4023 (diff)
sched: use group_first_cpu() instead of cpumask_first(sched_group_cpus())
Impact: cleanup This patch changes cpumask_first(sched_group_cpus()) to group_first_cpu() for maintainability. Signed-off-by: Miao Xie <miaox@cn.fujitsu.com> Acked-by: Peter Zijlstra <a.p.zijlstra@chello.nl> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/sched.c')
-rw-r--r--kernel/sched.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/sched.c b/kernel/sched.c
index 92b4b56ad093..7601ceebf7ce 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -7995,7 +7995,7 @@ static void init_numa_sched_groups_power(struct sched_group *group_head)
7995 struct sched_domain *sd; 7995 struct sched_domain *sd;
7996 7996
7997 sd = &per_cpu(phys_domains, j).sd; 7997 sd = &per_cpu(phys_domains, j).sd;
7998 if (j != cpumask_first(sched_group_cpus(sd->groups))) { 7998 if (j != group_first_cpu(sd->groups)) {
7999 /* 7999 /*
8000 * Only add "power" once for each 8000 * Only add "power" once for each
8001 * physical package. 8001 * physical package.
@@ -8073,7 +8073,7 @@ static void init_sched_groups_power(int cpu, struct sched_domain *sd)
8073 8073
8074 WARN_ON(!sd || !sd->groups); 8074 WARN_ON(!sd || !sd->groups);
8075 8075
8076 if (cpu != cpumask_first(sched_group_cpus(sd->groups))) 8076 if (cpu != group_first_cpu(sd->groups))
8077 return; 8077 return;
8078 8078
8079 child = sd->child; 8079 child = sd->child;