diff --git a/include/linux/sched.h b/include/linux/sched.h index fe752ca19a8d..207054a9867a 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h @@ -931,6 +931,7 @@ struct sched_avg { u64 last_runnable_update; s64 decay_count; unsigned long load_avg_contrib; + unsigned long load_avg_ratio; u32 usage_avg_sum; }; diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c index 98979ddf5407..e6db20a013b0 100644 --- a/kernel/sched/fair.c +++ b/kernel/sched/fair.c @@ -1428,6 +1428,9 @@ static inline void __update_task_entity_contrib(struct sched_entity *se) contrib = se->avg.runnable_avg_sum * scale_load_down(se->load.weight); contrib /= (se->avg.runnable_avg_period + 1); se->avg.load_avg_contrib = scale_load(contrib); + contrib = se->avg.runnable_avg_sum * scale_load_down(NICE_0_LOAD); + contrib /= (se->avg.runnable_avg_period + 1); + se->avg.load_avg_ratio = scale_load(contrib); } /* Compute the current contribution to load_avg by se, return any delta */