diff options
author | Gautham R Shenoy <ego@in.ibm.com> | 2009-04-20 23:10:49 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-04-21 02:06:05 -0400 |
commit | 6e29ec5701e9d44fa02b96c1c5c45f7516182b65 (patch) | |
tree | 16f9ebc56d995741a4041e81f1cdfc58f2161aaa /kernel/sched.c | |
parent | ff743345bf7685a207868048a70e23164c4785e5 (diff) |
sched: Replace first_cpu() with cpumask_first() in ILB nomination code
Stephen Rothwell reported this build warning:
> kernel/sched.c: In function 'find_new_ilb':
> kernel/sched.c:4355: warning: passing argument 1 of '__first_cpu' from incompatible pointer type
>
> Possibly caused by commit f711f6090a81cbd396b63de90f415d33f563af9b
> ("sched: Nominate idle load balancer from a semi-idle package") from
> the sched tree. Should this call to first_cpu be cpumask_first?
For !(CONFIG_SCHED_MC || CONFIG_SCHED_SMT), find_new_ilb() nominates the
Idle load balancer as the first cpu from the nohz.cpu_mask.
This code uses the older API first_cpu(). Replace it with cpumask_first(),
which is the correct API here.
[ Impact: cleanup, address build warning ]
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Gautham R Shenoy <ego@in.ibm.com>
Cc: Rusty Russell <rusty@rustcorp.com.au>
LKML-Reference: <20090421031049.GA4140@in.ibm.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/sched.c')
-rw-r--r-- | kernel/sched.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/sched.c b/kernel/sched.c index 797f6fdabadf..54d67b94f1a9 100644 --- a/kernel/sched.c +++ b/kernel/sched.c | |||
@@ -4356,7 +4356,7 @@ out_done: | |||
4356 | #else /* (CONFIG_SCHED_MC || CONFIG_SCHED_SMT) */ | 4356 | #else /* (CONFIG_SCHED_MC || CONFIG_SCHED_SMT) */ |
4357 | static inline int find_new_ilb(int call_cpu) | 4357 | static inline int find_new_ilb(int call_cpu) |
4358 | { | 4358 | { |
4359 | return first_cpu(nohz.cpu_mask); | 4359 | return cpumask_first(nohz.cpu_mask); |
4360 | } | 4360 | } |
4361 | #endif | 4361 | #endif |
4362 | 4362 | ||