missing #if for 1000 HZ

From: Albert Cahalan (albert@users.sourceforge.net)
Date: Tue Jul 22 2003 - 20:01:16 EST


This should improve timekeeping a bit @ 1000 HZ.

diff -Naurd old/kernel/timer.c new/kernel/timer.c
--- old/kernel/timer.c 2003-07-18 17:27:01.000000000 -0400
+++ new/kernel/timer.c 2003-07-18 17:32:19.000000000 -0400
@@ -606,6 +606,15 @@
     else
         time_adj += (time_adj >> 2) + (time_adj >> 5);
 #endif
+#if HZ == 1000
+ /* Compensate for (HZ==1000) != (1 << SHIFT_HZ).
+ * Add 1.5625% and 0.78125% to get 1023.4375; => only 0.05% error (p. 14)
+ */
+ if (time_adj < 0)
+ time_adj -= (-time_adj >> 6) + (-time_adj >> 7);
+ else
+ time_adj += (time_adj >> 6) + (time_adj >> 7);
+#endif
 }
 
 /* in the NTP reference this is called "hardclock()" */

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Wed Jul 23 2003 - 22:00:48 EST