diff options
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/time/ntp.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/kernel/time/ntp.c b/kernel/time/ntp.c index c09628d6b848..ab21eb06e09b 100644 --- a/kernel/time/ntp.c +++ b/kernel/time/ntp.c | |||
@@ -37,8 +37,7 @@ long time_tolerance = MAXFREQ; /* frequency tolerance (ppm) */ | |||
37 | long time_precision = 1; /* clock precision (us) */ | 37 | long time_precision = 1; /* clock precision (us) */ |
38 | long time_maxerror = NTP_PHASE_LIMIT; /* maximum error (us) */ | 38 | long time_maxerror = NTP_PHASE_LIMIT; /* maximum error (us) */ |
39 | long time_esterror = NTP_PHASE_LIMIT; /* estimated error (us) */ | 39 | long time_esterror = NTP_PHASE_LIMIT; /* estimated error (us) */ |
40 | long time_freq = (((NSEC_PER_SEC + HZ/2) % HZ - HZ/2) << SHIFT_USEC) / NSEC_PER_USEC; | 40 | long time_freq; /* frequency offset (scaled ppm)*/ |
41 | /* frequency offset (scaled ppm)*/ | ||
42 | long time_reftime; /* time at last adjustment (s) */ | 41 | long time_reftime; /* time at last adjustment (s) */ |
43 | long time_adjust; | 42 | long time_adjust; |
44 | long time_next_adjust; | 43 | long time_next_adjust; |
@@ -67,6 +66,7 @@ void ntp_update_frequency(void) | |||
67 | { | 66 | { |
68 | tick_length_base = (u64)(tick_usec * NSEC_PER_USEC * USER_HZ) << TICK_LENGTH_SHIFT; | 67 | tick_length_base = (u64)(tick_usec * NSEC_PER_USEC * USER_HZ) << TICK_LENGTH_SHIFT; |
69 | tick_length_base += (s64)CLOCK_TICK_ADJUST << TICK_LENGTH_SHIFT; | 68 | tick_length_base += (s64)CLOCK_TICK_ADJUST << TICK_LENGTH_SHIFT; |
69 | tick_length_base += ((s64)time_freq * NSEC_PER_USEC) << (TICK_LENGTH_SHIFT - SHIFT_USEC); | ||
70 | 70 | ||
71 | do_div(tick_length_base, HZ); | 71 | do_div(tick_length_base, HZ); |
72 | 72 | ||
@@ -163,8 +163,6 @@ void second_overflow(void) | |||
163 | * Compute the frequency estimate and additional phase adjustment due | 163 | * Compute the frequency estimate and additional phase adjustment due |
164 | * to frequency error for the next second. | 164 | * to frequency error for the next second. |
165 | */ | 165 | */ |
166 | ltemp = time_freq; | ||
167 | time_adj += shift_right(ltemp,(SHIFT_USEC + SHIFT_HZ - SHIFT_SCALE)); | ||
168 | 166 | ||
169 | #if HZ == 100 | 167 | #if HZ == 100 |
170 | /* | 168 | /* |
@@ -389,7 +387,7 @@ int do_adjtimex(struct timex *txc) | |||
389 | if (txc->modes & ADJ_TICK) | 387 | if (txc->modes & ADJ_TICK) |
390 | tick_usec = txc->tick; | 388 | tick_usec = txc->tick; |
391 | 389 | ||
392 | if (txc->modes & ADJ_TICK) | 390 | if (txc->modes & (ADJ_TICK|ADJ_FREQUENCY|ADJ_OFFSET)) |
393 | ntp_update_frequency(); | 391 | ntp_update_frequency(); |
394 | } /* txc->modes */ | 392 | } /* txc->modes */ |
395 | leave: if ((time_status & (STA_UNSYNC|STA_CLOCKERR)) != 0) | 393 | leave: if ((time_status & (STA_UNSYNC|STA_CLOCKERR)) != 0) |