|
@@ -670,6 +670,7 @@ static int select_idle_sibling(struct task_struct *p, int cpu);
|
|
|
static unsigned long task_h_load(struct task_struct *p);
|
|
|
|
|
|
static inline void __update_task_entity_contrib(struct sched_entity *se);
|
|
|
+static inline void __update_task_entity_utilization(struct sched_entity *se);
|
|
|
|
|
|
/* Give new task start runnable values to heavy its load in infant time */
|
|
|
void init_task_runnable_average(struct task_struct *p)
|
|
@@ -677,9 +678,10 @@ void init_task_runnable_average(struct task_struct *p)
|
|
|
u32 slice;
|
|
|
|
|
|
slice = sched_slice(task_cfs_rq(p), &p->se) >> 10;
|
|
|
- p->se.avg.runnable_avg_sum = slice;
|
|
|
- p->se.avg.runnable_avg_period = slice;
|
|
|
+ p->se.avg.runnable_avg_sum = p->se.avg.running_avg_sum = slice;
|
|
|
+ p->se.avg.avg_period = slice;
|
|
|
__update_task_entity_contrib(&p->se);
|
|
|
+ __update_task_entity_utilization(&p->se);
|
|
|
}
|
|
|
#else
|
|
|
void init_task_runnable_average(struct task_struct *p)
|
|
@@ -1684,7 +1686,7 @@ static u64 numa_get_avg_runtime(struct task_struct *p, u64 *period)
|
|
|
*period = now - p->last_task_numa_placement;
|
|
|
} else {
|
|
|
delta = p->se.avg.runnable_avg_sum;
|
|
|
- *period = p->se.avg.runnable_avg_period;
|
|
|
+ *period = p->se.avg.avg_period;
|
|
|
}
|
|
|
|
|
|
p->last_sum_exec_runtime = runtime;
|
|
@@ -2512,7 +2514,8 @@ static u32 __compute_runnable_contrib(u64 n)
|
|
|
*/
|
|
|
static __always_inline int __update_entity_runnable_avg(u64 now,
|
|
|
struct sched_avg *sa,
|
|
|
- int runnable)
|
|
|
+ int runnable,
|
|
|
+ int running)
|
|
|
{
|
|
|
u64 delta, periods;
|
|
|
u32 runnable_contrib;
|
|
@@ -2538,7 +2541,7 @@ static __always_inline int __update_entity_runnable_avg(u64 now,
|
|
|
sa->last_runnable_update = now;
|
|
|
|
|
|
/* delta_w is the amount already accumulated against our next period */
|
|
|
- delta_w = sa->runnable_avg_period % 1024;
|
|
|
+ delta_w = sa->avg_period % 1024;
|
|
|
if (delta + delta_w >= 1024) {
|
|
|
/* period roll-over */
|
|
|
decayed = 1;
|
|
@@ -2551,7 +2554,9 @@ static __always_inline int __update_entity_runnable_avg(u64 now,
|
|
|
delta_w = 1024 - delta_w;
|
|
|
if (runnable)
|
|
|
sa->runnable_avg_sum += delta_w;
|
|
|
- sa->runnable_avg_period += delta_w;
|
|
|
+ if (running)
|
|
|
+ sa->running_avg_sum += delta_w;
|
|
|
+ sa->avg_period += delta_w;
|
|
|
|
|
|
delta -= delta_w;
|
|
|
|
|
@@ -2561,20 +2566,26 @@ static __always_inline int __update_entity_runnable_avg(u64 now,
|
|
|
|
|
|
sa->runnable_avg_sum = decay_load(sa->runnable_avg_sum,
|
|
|
periods + 1);
|
|
|
- sa->runnable_avg_period = decay_load(sa->runnable_avg_period,
|
|
|
+ sa->running_avg_sum = decay_load(sa->running_avg_sum,
|
|
|
+ periods + 1);
|
|
|
+ sa->avg_period = decay_load(sa->avg_period,
|
|
|
periods + 1);
|
|
|
|
|
|
/* Efficiently calculate \sum (1..n_period) 1024*y^i */
|
|
|
runnable_contrib = __compute_runnable_contrib(periods);
|
|
|
if (runnable)
|
|
|
sa->runnable_avg_sum += runnable_contrib;
|
|
|
- sa->runnable_avg_period += runnable_contrib;
|
|
|
+ if (running)
|
|
|
+ sa->running_avg_sum += runnable_contrib;
|
|
|
+ sa->avg_period += runnable_contrib;
|
|
|
}
|
|
|
|
|
|
/* Remainder of delta accrued against u_0` */
|
|
|
if (runnable)
|
|
|
sa->runnable_avg_sum += delta;
|
|
|
- sa->runnable_avg_period += delta;
|
|
|
+ if (running)
|
|
|
+ sa->running_avg_sum += delta;
|
|
|
+ sa->avg_period += delta;
|
|
|
|
|
|
return decayed;
|
|
|
}
|
|
@@ -2591,6 +2602,8 @@ static inline u64 __synchronize_entity_decay(struct sched_entity *se)
|
|
|
return 0;
|
|
|
|
|
|
se->avg.load_avg_contrib = decay_load(se->avg.load_avg_contrib, decays);
|
|
|
+ se->avg.utilization_avg_contrib =
|
|
|
+ decay_load(se->avg.utilization_avg_contrib, decays);
|
|
|
|
|
|
return decays;
|
|
|
}
|
|
@@ -2626,7 +2639,7 @@ static inline void __update_tg_runnable_avg(struct sched_avg *sa,
|
|
|
|
|
|
/* The fraction of a cpu used by this cfs_rq */
|
|
|
contrib = div_u64((u64)sa->runnable_avg_sum << NICE_0_SHIFT,
|
|
|
- sa->runnable_avg_period + 1);
|
|
|
+ sa->avg_period + 1);
|
|
|
contrib -= cfs_rq->tg_runnable_contrib;
|
|
|
|
|
|
if (abs(contrib) > cfs_rq->tg_runnable_contrib / 64) {
|
|
@@ -2679,7 +2692,8 @@ static inline void __update_group_entity_contrib(struct sched_entity *se)
|
|
|
|
|
|
static inline void update_rq_runnable_avg(struct rq *rq, int runnable)
|
|
|
{
|
|
|
- __update_entity_runnable_avg(rq_clock_task(rq), &rq->avg, runnable);
|
|
|
+ __update_entity_runnable_avg(rq_clock_task(rq), &rq->avg, runnable,
|
|
|
+ runnable);
|
|
|
__update_tg_runnable_avg(&rq->avg, &rq->cfs);
|
|
|
}
|
|
|
#else /* CONFIG_FAIR_GROUP_SCHED */
|
|
@@ -2697,7 +2711,7 @@ static inline void __update_task_entity_contrib(struct sched_entity *se)
|
|
|
|
|
|
/* avoid overflowing a 32-bit type w/ SCHED_LOAD_SCALE */
|
|
|
contrib = se->avg.runnable_avg_sum * scale_load_down(se->load.weight);
|
|
|
- contrib /= (se->avg.runnable_avg_period + 1);
|
|
|
+ contrib /= (se->avg.avg_period + 1);
|
|
|
se->avg.load_avg_contrib = scale_load(contrib);
|
|
|
}
|
|
|
|
|
@@ -2716,6 +2730,27 @@ static long __update_entity_load_avg_contrib(struct sched_entity *se)
|
|
|
return se->avg.load_avg_contrib - old_contrib;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+static inline void __update_task_entity_utilization(struct sched_entity *se)
|
|
|
+{
|
|
|
+ u32 contrib;
|
|
|
+
|
|
|
+ /* avoid overflowing a 32-bit type w/ SCHED_LOAD_SCALE */
|
|
|
+ contrib = se->avg.running_avg_sum * scale_load_down(SCHED_LOAD_SCALE);
|
|
|
+ contrib /= (se->avg.avg_period + 1);
|
|
|
+ se->avg.utilization_avg_contrib = scale_load(contrib);
|
|
|
+}
|
|
|
+
|
|
|
+static long __update_entity_utilization_avg_contrib(struct sched_entity *se)
|
|
|
+{
|
|
|
+ long old_contrib = se->avg.utilization_avg_contrib;
|
|
|
+
|
|
|
+ if (entity_is_task(se))
|
|
|
+ __update_task_entity_utilization(se);
|
|
|
+
|
|
|
+ return se->avg.utilization_avg_contrib - old_contrib;
|
|
|
+}
|
|
|
+
|
|
|
static inline void subtract_blocked_load_contrib(struct cfs_rq *cfs_rq,
|
|
|
long load_contrib)
|
|
|
{
|
|
@@ -2732,7 +2767,7 @@ static inline void update_entity_load_avg(struct sched_entity *se,
|
|
|
int update_cfs_rq)
|
|
|
{
|
|
|
struct cfs_rq *cfs_rq = cfs_rq_of(se);
|
|
|
- long contrib_delta;
|
|
|
+ long contrib_delta, utilization_delta;
|
|
|
u64 now;
|
|
|
|
|
|
/*
|
|
@@ -2744,18 +2779,22 @@ static inline void update_entity_load_avg(struct sched_entity *se,
|
|
|
else
|
|
|
now = cfs_rq_clock_task(group_cfs_rq(se));
|
|
|
|
|
|
- if (!__update_entity_runnable_avg(now, &se->avg, se->on_rq))
|
|
|
+ if (!__update_entity_runnable_avg(now, &se->avg, se->on_rq,
|
|
|
+ cfs_rq->curr == se))
|
|
|
return;
|
|
|
|
|
|
contrib_delta = __update_entity_load_avg_contrib(se);
|
|
|
+ utilization_delta = __update_entity_utilization_avg_contrib(se);
|
|
|
|
|
|
if (!update_cfs_rq)
|
|
|
return;
|
|
|
|
|
|
- if (se->on_rq)
|
|
|
+ if (se->on_rq) {
|
|
|
cfs_rq->runnable_load_avg += contrib_delta;
|
|
|
- else
|
|
|
+ cfs_rq->utilization_load_avg += utilization_delta;
|
|
|
+ } else {
|
|
|
subtract_blocked_load_contrib(cfs_rq, -contrib_delta);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
/*
|
|
@@ -2830,6 +2869,7 @@ static inline void enqueue_entity_load_avg(struct cfs_rq *cfs_rq,
|
|
|
}
|
|
|
|
|
|
cfs_rq->runnable_load_avg += se->avg.load_avg_contrib;
|
|
|
+ cfs_rq->utilization_load_avg += se->avg.utilization_avg_contrib;
|
|
|
/* we force update consideration on load-balancer moves */
|
|
|
update_cfs_rq_blocked_load(cfs_rq, !wakeup);
|
|
|
}
|
|
@@ -2848,6 +2888,7 @@ static inline void dequeue_entity_load_avg(struct cfs_rq *cfs_rq,
|
|
|
update_cfs_rq_blocked_load(cfs_rq, !sleep);
|
|
|
|
|
|
cfs_rq->runnable_load_avg -= se->avg.load_avg_contrib;
|
|
|
+ cfs_rq->utilization_load_avg -= se->avg.utilization_avg_contrib;
|
|
|
if (sleep) {
|
|
|
cfs_rq->blocked_load_avg += se->avg.load_avg_contrib;
|
|
|
se->avg.decay_count = atomic64_read(&cfs_rq->decay_counter);
|
|
@@ -3185,6 +3226,7 @@ set_next_entity(struct cfs_rq *cfs_rq, struct sched_entity *se)
|
|
|
*/
|
|
|
update_stats_wait_end(cfs_rq, se);
|
|
|
__dequeue_entity(cfs_rq, se);
|
|
|
+ update_entity_load_avg(se, 1);
|
|
|
}
|
|
|
|
|
|
update_stats_curr_start(cfs_rq, se);
|