diff options
-rw-r--r-- | kernel/sched/cpufreq_schedutil.c | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/kernel/sched/cpufreq_schedutil.c b/kernel/sched/cpufreq_schedutil.c index e13df951aca7..28592b62b1d5 100644 --- a/kernel/sched/cpufreq_schedutil.c +++ b/kernel/sched/cpufreq_schedutil.c | |||
@@ -183,22 +183,21 @@ static void sugov_get_util(struct sugov_cpu *sg_cpu) | |||
183 | static unsigned long sugov_aggregate_util(struct sugov_cpu *sg_cpu) | 183 | static unsigned long sugov_aggregate_util(struct sugov_cpu *sg_cpu) |
184 | { | 184 | { |
185 | struct rq *rq = cpu_rq(sg_cpu->cpu); | 185 | struct rq *rq = cpu_rq(sg_cpu->cpu); |
186 | unsigned long util; | ||
187 | 186 | ||
188 | if (rq->rt.rt_nr_running) { | 187 | if (rq->rt.rt_nr_running) |
189 | util = sg_cpu->max; | 188 | return sg_cpu->max; |
190 | } else { | ||
191 | util = sg_cpu->util_dl; | ||
192 | if (rq->cfs.h_nr_running) | ||
193 | util += sg_cpu->util_cfs; | ||
194 | } | ||
195 | 189 | ||
196 | /* | 190 | /* |
191 | * Utilization required by DEADLINE must always be granted while, for | ||
192 | * FAIR, we use blocked utilization of IDLE CPUs as a mechanism to | ||
193 | * gracefully reduce the frequency when no tasks show up for longer | ||
194 | * periods of time. | ||
195 | * | ||
197 | * Ideally we would like to set util_dl as min/guaranteed freq and | 196 | * Ideally we would like to set util_dl as min/guaranteed freq and |
198 | * util_cfs + util_dl as requested freq. However, cpufreq is not yet | 197 | * util_cfs + util_dl as requested freq. However, cpufreq is not yet |
199 | * ready for such an interface. So, we only do the latter for now. | 198 | * ready for such an interface. So, we only do the latter for now. |
200 | */ | 199 | */ |
201 | return min(util, sg_cpu->max); | 200 | return min(sg_cpu->max, (sg_cpu->util_dl + sg_cpu->util_cfs)); |
202 | } | 201 | } |
203 | 202 | ||
204 | static void sugov_set_iowait_boost(struct sugov_cpu *sg_cpu, u64 time, unsigned int flags) | 203 | static void sugov_set_iowait_boost(struct sugov_cpu *sg_cpu, u64 time, unsigned int flags) |