mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: john stultz <johnstul@us.ibm.com>
To: Roman Zippel <zippel@linux-m68k.org>
Cc: Clark Williams <williams@redhat.com>,
	lkml <linux-kernel@vger.kernel.org>
Subject: [PATCH][RFC] Apply NTP frequency/tick changes immediately.
Date: Thu, 12 Feb 2009 19:02:01 -0800	[thread overview]
Message-ID: <1234494121.7042.14.camel@localhost.localdomain> (raw)

Hey Roman,
	It was brought to my attention that since the GENERIC_TIME changes
landed, the adjtimex behavior changed for struct timex.tick and .freq
changes. When the tick or freq value is set, we adjust the
tick_length_base in ntp_update_frequency(). However, this new value
doesn't get applied to tick_length until the next second (via
second_overflow). 

This means some applications that do quick time tweaking do not see the
requested change made as quickly as expected.

Looking at the code, it doesn't seem like it would be too hard to
immediately apply the change to the tick_length value, so its changed in
the following NTP_INTERVAL, which this patch does.

I've run a few tests with this change, and ntpd still functions fine. I
do however note that the drift value for my test system changed from
~170ppm to ~18ppm, which I didn't quite expect, and needs some
additional research.

Anyway, I just wanted to see if you had any thoughts on this sort of
change.

thanks
-john


Apply NTP tick/frequency adjustments immediately instead of waiting for
the next second to pass.

Signed-off-by: John Stultz <johnstul@us.ibm.com>

diff --git a/kernel/time/ntp.c b/kernel/time/ntp.c
index f5f793d..9fd0d15 100644
--- a/kernel/time/ntp.c
+++ b/kernel/time/ntp.c
@@ -51,6 +51,7 @@ static long ntp_tick_adj;
 
 static void ntp_update_frequency(void)
 {
+	u64 old_tick_length_base = tick_length_base;
 	u64 second_length = (u64)(tick_usec * NSEC_PER_USEC * USER_HZ)
 				<< NTP_SCALE_SHIFT;
 	second_length += (s64)ntp_tick_adj << NTP_SCALE_SHIFT;
@@ -60,6 +61,11 @@ static void ntp_update_frequency(void)
 
 	tick_nsec = div_u64(second_length, HZ) >> NTP_SCALE_SHIFT;
 	tick_length_base = div_u64(tick_length_base, NTP_INTERVAL_FREQ);
+	
+	/* Don't wait for the next second_overflow, apply
+	 * the change to the tick length immediately
+	 */
+	tick_length += tick_length_base - old_tick_length_base;
 }
 
 static void ntp_update_offset(long offset)



             reply	other threads:[~2009-02-13  3:02 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-02-13  3:02 john stultz [this message]
2009-02-19  0:02 ` [PATCH][RFC(again)] " john stultz
2009-02-19 22:12   ` Andrew Morton
2009-02-19 22:47     ` john stultz

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1234494121.7042.14.camel@localhost.localdomain \
    --to=johnstul@us.ibm.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=williams@redhat.com \
    --cc=zippel@linux-m68k.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®