diff options
author | Vincent Guittot <vincent.guittot@linaro.org> | 2015-02-27 10:54:06 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2015-03-27 04:35:59 -0400 |
commit | a8faa8f55d48496f64d96df48298e54fd380f6af (patch) | |
tree | 3f55a2b793bd5105d4c0a53bbec12132c58489bc /kernel/sched | |
parent | 21f4486630b0bd1b6dbcc04f61836987fa54278f (diff) |
sched: Remove frequency scaling from cpu_capacity
Now that arch_scale_cpu_capacity has been introduced to scale the original
capacity, the arch_scale_freq_capacity is no longer used (it was
previously used by ARM arch).
Remove arch_scale_freq_capacity from the computation of cpu_capacity.
The frequency invariance will be handled in the load tracking and not in
the CPU capacity. arch_scale_freq_capacity will be revisited for scaling
load with the current frequency of the CPUs in a later patch.
Signed-off-by: Vincent Guittot <vincent.guittot@linaro.org>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Acked-by: Morten Rasmussen <morten.rasmussen@arm.com>
Cc: Morten.Rasmussen@arm.com
Cc: dietmar.eggemann@arm.com
Cc: efault@gmx.de
Cc: kamalesh@linux.vnet.ibm.com
Cc: linaro-kernel@lists.linaro.org
Cc: nicolas.pitre@linaro.org
Cc: preeti@linux.vnet.ibm.com
Cc: riel@redhat.com
Link: http://lkml.kernel.org/r/1425052454-25797-4-git-send-email-vincent.guittot@linaro.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'kernel/sched')
-rw-r--r-- | kernel/sched/fair.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c index d94a86511ae9..e54231fc6336 100644 --- a/kernel/sched/fair.c +++ b/kernel/sched/fair.c | |||
@@ -6042,13 +6042,6 @@ static void update_cpu_capacity(struct sched_domain *sd, int cpu) | |||
6042 | 6042 | ||
6043 | sdg->sgc->capacity_orig = capacity; | 6043 | sdg->sgc->capacity_orig = capacity; |
6044 | 6044 | ||
6045 | if (sched_feat(ARCH_CAPACITY)) | ||
6046 | capacity *= arch_scale_freq_capacity(sd, cpu); | ||
6047 | else | ||
6048 | capacity *= default_scale_capacity(sd, cpu); | ||
6049 | |||
6050 | capacity >>= SCHED_CAPACITY_SHIFT; | ||
6051 | |||
6052 | capacity *= scale_rt_capacity(cpu); | 6045 | capacity *= scale_rt_capacity(cpu); |
6053 | capacity >>= SCHED_CAPACITY_SHIFT; | 6046 | capacity >>= SCHED_CAPACITY_SHIFT; |
6054 | 6047 | ||