|
@@ -5385,6 +5385,14 @@ enqueue_task_fair(struct rq *rq, struct task_struct *p, int flags)
|
|
struct cfs_rq *cfs_rq;
|
|
struct cfs_rq *cfs_rq;
|
|
struct sched_entity *se = &p->se;
|
|
struct sched_entity *se = &p->se;
|
|
|
|
|
|
|
|
+ /*
|
|
|
|
+ * The code below (indirectly) updates schedutil which looks at
|
|
|
|
+ * the cfs_rq utilization to select a frequency.
|
|
|
|
+ * Let's add the task's estimated utilization to the cfs_rq's
|
|
|
|
+ * estimated utilization, before we update schedutil.
|
|
|
|
+ */
|
|
|
|
+ util_est_enqueue(&rq->cfs, p);
|
|
|
|
+
|
|
/*
|
|
/*
|
|
* If in_iowait is set, the code below may not trigger any cpufreq
|
|
* If in_iowait is set, the code below may not trigger any cpufreq
|
|
* utilization updates, so do it here explicitly with the IOWAIT flag
|
|
* utilization updates, so do it here explicitly with the IOWAIT flag
|
|
@@ -5426,7 +5434,6 @@ enqueue_task_fair(struct rq *rq, struct task_struct *p, int flags)
|
|
if (!se)
|
|
if (!se)
|
|
add_nr_running(rq, 1);
|
|
add_nr_running(rq, 1);
|
|
|
|
|
|
- util_est_enqueue(&rq->cfs, p);
|
|
|
|
hrtick_update(rq);
|
|
hrtick_update(rq);
|
|
}
|
|
}
|
|
|
|
|