ntpd: increase SLEW_THRESHOLD from 0.125 to 0.5
authorDenys Vlasenko <vda.linux@googlemail.com>
Fri, 15 Feb 2019 13:32:08 +0000 (14:32 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Fri, 15 Feb 2019 13:32:08 +0000 (14:32 +0100)
Linux kernel supports it since ~2006

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
networking/ntpd.c

index 855815ececf897b13f7584484c4412fbcab8452b..0f474bc095a509d8da8abbbe8683e5591f1d8d5b 100644 (file)
  */
 #define STEP_THRESHOLD     1
 /* Slew threshold (sec): adjtimex() won't accept offsets larger than this.
- * Using exact power of 2 (1/8) results in smaller code
+ * Using exact power of 2 (1/8, 1/2 etc) results in smaller code
  */
-#define SLEW_THRESHOLD 0.125
-//^^^^^^^^^^^^^^^^^^^^^^^^^^ TODO: man adjtimex about tmx.offset:
-// "Since Linux 2.6.26, the supplied value is clamped to the range (-0.5s, +0.5s)"
-// - can use this larger value instead?
+#define SLEW_THRESHOLD   0.5
+// ^^^^ used to be 0.125.
+// Since Linux 2.6.26 (circa 2006), kernel accepts (-0.5s, +0.5s) range
 
 /* Stepout threshold (sec). std ntpd uses 900 (11 mins (!)) */
 //UNUSED: #define WATCH_THRESHOLD  128