diff options
-rw-r--r-- | kernel/sched/fair.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c index fc0afc55b4a6..5fda3c4411f6 100644 --- a/kernel/sched/fair.c +++ b/kernel/sched/fair.c | |||
@@ -6509,7 +6509,7 @@ static struct { | |||
6509 | unsigned long next_balance; /* in jiffy units */ | 6509 | unsigned long next_balance; /* in jiffy units */ |
6510 | } nohz ____cacheline_aligned; | 6510 | } nohz ____cacheline_aligned; |
6511 | 6511 | ||
6512 | static inline int find_new_ilb(int call_cpu) | 6512 | static inline int find_new_ilb(void) |
6513 | { | 6513 | { |
6514 | int ilb = cpumask_first(nohz.idle_cpus_mask); | 6514 | int ilb = cpumask_first(nohz.idle_cpus_mask); |
6515 | 6515 | ||
@@ -6530,7 +6530,7 @@ static void nohz_balancer_kick(int cpu) | |||
6530 | 6530 | ||
6531 | nohz.next_balance++; | 6531 | nohz.next_balance++; |
6532 | 6532 | ||
6533 | ilb_cpu = find_new_ilb(cpu); | 6533 | ilb_cpu = find_new_ilb(); |
6534 | 6534 | ||
6535 | if (ilb_cpu >= nr_cpu_ids) | 6535 | if (ilb_cpu >= nr_cpu_ids) |
6536 | return; | 6536 | return; |