All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] sched: Improve readability in update_cpu_load() code
@ 2008-05-15 13:04 Gautham R Shenoy
  2008-05-15 14:52 ` Srivatsa Vaddagiri
  0 siblings, 1 reply; 6+ messages in thread
From: Gautham R Shenoy @ 2008-05-15 13:04 UTC (permalink / raw)
  To: Ingo Molnar, npiggin; +Cc: linux-kernel, Srivatsa Vaddagiri

Author: Gautham R Shenoy <ego@in.ibm.com>
Date:   Thu May 15 17:55:49 2008 +0530

    sched: Improve readability in update_cpu_load() code
    
    Currently the cpu_load[i] is calculated as:
    	this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) >> i;
    
    However, since scale = 2^i, this can be simplified as:
    	this_rq->cpu_load[i] = old_load + ((new_load - old_load) >> i);
    
    Makes it easier to read.
    Signed-off-by: Gautham R Shenoy <ego@in.ibm.com>

diff --git a/kernel/sched.c b/kernel/sched.c
index 2d7d8f1..e1a6985 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -2921,7 +2921,7 @@ static void update_cpu_load(struct rq *this_rq)
 		 */
 		if (new_load > old_load)
 			new_load += scale-1;
-		this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) >> i;
+		this_rq->cpu_load[i] = old_load + ((new_load - old_load) >> i);
 	}
 }
 
-- 
Thanks and Regards
gautham

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2008-05-15 17:10 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-15 13:04 [PATCH] sched: Improve readability in update_cpu_load() code Gautham R Shenoy
2008-05-15 14:52 ` Srivatsa Vaddagiri
2008-05-15 15:02   ` Srivatsa Vaddagiri
2008-05-15 15:15   ` Dmitry Adamushko
2008-05-15 15:31     ` Dmitry Adamushko
2008-05-15 17:11   ` Gautham R Shenoy

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.