Skip to content

Commit 289de35

Browse files
vingu-linaroingomolnar
authored andcommitted
sched/fair: Fix statistics for find_idlest_group()
sgs->group_weight is not set while gathering statistics in update_sg_wakeup_stats(). This means that a group can be classified as fully busy with 0 running tasks if utilization is high enough. This path is mainly used for fork and exec. Fixes: 57abff0 ("sched/fair: Rework find_idlest_group()") Signed-off-by: Vincent Guittot <vincent.guittot@linaro.org> Signed-off-by: Ingo Molnar <mingo@kernel.org> Acked-by: Peter Zijlstra <a.p.zijlstra@chello.nl> Acked-by: Mel Gorman <mgorman@techsingularity.net> Link: https://lore.kernel.org/r/20200218144534.4564-1-vincent.guittot@linaro.org
1 parent c5f8689 commit 289de35

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

kernel/sched/fair.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8337,6 +8337,8 @@ static inline void update_sg_wakeup_stats(struct sched_domain *sd,
83378337

83388338
sgs->group_capacity = group->sgc->capacity;
83398339

8340+
sgs->group_weight = group->group_weight;
8341+
83408342
sgs->group_type = group_classify(sd->imbalance_pct, group, sgs);
83418343

83428344
/*

0 commit comments

Comments
 (0)