]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
sched: fix stale value in average load per task
authorBalbir Singh <balbir@linux.vnet.ibm.com>
Wed, 12 Nov 2008 10:49:00 +0000 (16:19 +0530)
committerIngo Molnar <mingo@elte.hu>
Wed, 12 Nov 2008 11:33:50 +0000 (12:33 +0100)
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: Balbir Singh <balbir@linux.vnet.ibm.com>
Acked-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
kernel/sched.c

index 50a21f964679ec42eee299cab7f7f86edc26a408..3bafbe350f4f305b545abdbbcba179a22da6ec4f 100644 (file)
@@ -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;
 }