Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a2d47777 authored by Balbir Singh's avatar Balbir Singh Committed by Ingo Molnar
Browse files

sched: fix stale value in average load per task



Impact: fix load balancer load average calculation accuracy

cpu_avg_load_per_task() returns a stale value when nr_running is 0.
It returns an older stale (caculated when nr_running was non zero) value.

This patch returns and sets rq->avg_load_per_task to zero when nr_running
is 0.

Compile and boot tested on a x86_64 box.

Signed-off-by: default avatarBalbir Singh <balbir@linux.vnet.ibm.com>
Acked-by: default avatarPeter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent f21f237c
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -1456,6 +1456,8 @@ static unsigned long cpu_avg_load_per_task(int cpu)

	if (rq->nr_running)
		rq->avg_load_per_task = rq->load.weight / rq->nr_running;
	else
		rq->avg_load_per_task = 0;

	return rq->avg_load_per_task;
}