public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 2/2] sched: Fix "divide error: 0000" in find_busiest_group
@ 2011-07-19 20:58 Terry Loftin
  2011-07-19 21:18 ` Peter Zijlstra
  0 siblings, 1 reply; 5+ messages in thread
From: Terry Loftin @ 2011-07-19 20:58 UTC (permalink / raw)
  To: linux-kernel, Ingo Molnar, Peter Zijlstra; +Cc: Bob Montgomery

Add a check to sched_avg_update() to detect and reset age_stamp if the
clock value has wrapped.  Because __cycles_2_ns() includes an offset
to account for start up time, the clock may not wrap to zero, so use
the current clock value instead.

Signed-off-by: Terry Loftin <terry.loftin@hp.com>
Signed-off-by: Bob Montgomery <bob.montgomery@hp.com>
---
diff --git a/kernel/sched.c b/kernel/sched.c
index 18d38e4..b39cae1 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -1256,6 +1256,8 @@ static void sched_avg_update(struct rq *rq)
 {
 	s64 period = sched_avg_period();

+	if (unlikely(rq->age_stamp > rq->clock))
+		rq->age_stamp = rq->clock;
 	while ((s64)(rq->clock - rq->age_stamp) > period) {
 		/*
 		 * Inline assembly required to prevent the compiler

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

end of thread, other threads:[~2011-07-19 22:39 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-19 20:58 [PATCH 2/2] sched: Fix "divide error: 0000" in find_busiest_group Terry Loftin
2011-07-19 21:18 ` Peter Zijlstra
2011-07-19 22:21   ` Terry Loftin
2011-07-19 22:33     ` Peter Zijlstra
2011-07-19 22:39       ` Terry Loftin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox