]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
[SPARC64]: Fix sched_clock() wrapping every ~17 seconds.
authorDavid S. Miller <davem@davemloft.net>
Sat, 14 Oct 2006 08:33:10 +0000 (10:33 +0200)
committerAdrian Bunk <bunk@stusta.de>
Sat, 14 Oct 2006 08:33:10 +0000 (10:33 +0200)
Unfortunately, sparc64 doesn't have an easy way to do a "64 X 64 -->
128" bit multiply like PowerPC and IA64 do.  We were doing a
"64 X 64 --> 64" bit multiple which causes overflow very quickly with
a 30-bit quotient shift.

So use a quotientshift count of 10 instead of 30, just like x86 and
ARM do.

This also fixes the wrapping of printk timestamp values every ~17
seconds.

Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
arch/sparc64/kernel/time.c

index a22930d62adf0de96b7d365a8de9df0e141993b3..0af3b8384e2b19ff3ad96c2cdd12ac36165f34bb 100644 (file)
@@ -1039,7 +1039,7 @@ static struct time_interpolator sparc64_cpu_interpolator = {
 };
 
 /* The quotient formula is taken from the IA64 port. */
-#define SPARC64_NSEC_PER_CYC_SHIFT     30UL
+#define SPARC64_NSEC_PER_CYC_SHIFT     10UL
 void __init time_init(void)
 {
        unsigned long clock = sparc64_init_timers();