diff options
author | Vincent Guittot <vincent.guittot@linaro.org> | 2019-06-17 11:00:17 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2019-06-24 13:23:39 -0400 |
commit | 8ec59c0f5f4966f89f4e3e3cab81710c7fa959d0 (patch) | |
tree | ff6a6d519b089e759a168302f917ebe8d28a8046 /kernel/sched/pelt.c | |
parent | d2abae71ebcc409828b24ce9da402548ecdf1311 (diff) |
sched/topology: Remove unused 'sd' parameter from arch_scale_cpu_capacity()
The 'struct sched_domain *sd' parameter to arch_scale_cpu_capacity() is
unused since commit:
765d0af19f5f ("sched/topology: Remove the ::smt_gain field from 'struct sched_domain'")
Remove it.
Signed-off-by: Vincent Guittot <vincent.guittot@linaro.org>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Reviewed-by: Viresh Kumar <viresh.kumar@linaro.org>
Reviewed-by: Valentin Schneider <valentin.schneider@arm.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: gregkh@linuxfoundation.org
Cc: linux@armlinux.org.uk
Cc: quentin.perret@arm.com
Cc: rafael@kernel.org
Link: https://lkml.kernel.org/r/1560783617-5827-1-git-send-email-vincent.guittot@linaro.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'kernel/sched/pelt.c')
-rw-r--r-- | kernel/sched/pelt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/sched/pelt.c b/kernel/sched/pelt.c index befce29bd882..42ea66b07b1d 100644 --- a/kernel/sched/pelt.c +++ b/kernel/sched/pelt.c | |||
@@ -366,7 +366,7 @@ int update_irq_load_avg(struct rq *rq, u64 running) | |||
366 | * reflect the real amount of computation | 366 | * reflect the real amount of computation |
367 | */ | 367 | */ |
368 | running = cap_scale(running, arch_scale_freq_capacity(cpu_of(rq))); | 368 | running = cap_scale(running, arch_scale_freq_capacity(cpu_of(rq))); |
369 | running = cap_scale(running, arch_scale_cpu_capacity(NULL, cpu_of(rq))); | 369 | running = cap_scale(running, arch_scale_cpu_capacity(cpu_of(rq))); |
370 | 370 | ||
371 | /* | 371 | /* |
372 | * We know the time that has been used by interrupt since last update | 372 | * We know the time that has been used by interrupt since last update |