From: "Zhang, Yanmin" <yanmin_zhang@linux.intel.com>
To: Roman Zippel <zippel@linux-m68k.org>
Cc: john stultz <johnstul@us.ibm.com>,
lkml <linux-kernel@vger.kernel.org>,
alex.shi@intel.com, Thomas Gleixner <tglx@tglx.de>,
Andrew Morton <akpm@linux-foundation.org>
Subject: Re: [RFC][PATCH] Catch xtime_nsec underflows and fix them
Date: Wed, 03 Dec 2008 11:01:35 +0800 [thread overview]
Message-ID: <1228273295.2866.189.camel@ymzhang> (raw)
In-Reply-To: <Pine.LNX.4.64.0812022118330.24668@localhost.localdomain>
On Wed, 2008-12-03 at 03:35 +0100, Roman Zippel wrote:
> Hi,
>
> On Mon, 1 Dec 2008, john stultz wrote:
>
> > Alex Shi, along with Yanmin Zhang have been noticing occasional time
> > inconsistencies recently. Through their great diagnosis, they found that
> > the xtime_nsec value used in update_wall_time was occasionally going
> > negative. After looking through the code for awhile, I realized we have
> > the possibility for an underflow when three conditions are met in
> > update_wall_time():
> >
> > 1) We have accumulated a second's worth of nanoseconds, so we
> > incremented xtime.tv_sec and appropriately decrement xtime_nsec. (This
> > doesn't cause xtime_nsec to go negative, but it can cause it to be
> > small).
> >
> > 2) The remaining offset value is large, but just slightly less then
> > cycle_interval.
> >
> > 3) clocksource_adjust() is speeding up the clock, causing a corrective
> > amount (compensating for the increase in the multiplier being multiplied
> > against the unaccumulated offset value) to be subtracted from
> > xtime_nsec.
> >
> > This can cause xtime_nsec to underflow.
>
> This doesn't explain the problem entirely, I considered a negative
> xtime_nsec before, but xtime_nsec+offset should still be positive
xtime_nsec underflows after clocksource_adjust. Before clocksource_adjust,
xtime_nsec is a small positive.
When xtime_nsec underflows at the first time, xtime.tv_nsec becomes -1.
Later on when the second tick arrives, below statement in the while loop
clock->xtime_nsec += clock->xtime_interval;
will cause clock->xtime_nsec becomes positive again. So the second tick
appears a going-backward time.
> and
> produce the correct result, at least I can't find anything in
> getnstimeofday().
The testing uses vsyscall to get call gettimeofday. vsyscall_gtod_data.wall_time_nsec
is a u32 while timespec->tv_nsec is a signed long.
> It should also be a very rare event, so it's really
> puzzling that it's so easy to reproduce.
We just triggered it on 2 machines. Other machines are ok.
> So there must be more to it than just a negative xtime_nsec, it triggers
> the problem, but it's not the actual problem. One possible explanation is
> this line:
>
> clock->xtime_nsec -= (s64)xtime.tv_nsec << clock->shift;
>
> The rounding further increases the problem as the error is adjusted into
> the wrong direction and under the right conditions it seems to be possible
> to go out of sync as the error increasingly gets worse. I'd like to see
> some numbers to confirm this theory, in any case above line is incorrect
> for negative numbers.
>
> > + /* Since in the loop above, we accumulate any amount of time
> > + * in xtime_nsec over a second into xtime.tv_sec, its possible for
> > + * xtime_nsec to be fairly small after the loop. Further, if we're
> > + * slightly speeding the clocksource up in clocksource_adjust(),
> > + * its possible the required corrective factor to xtime_nsec could
> > + * cause it to underflow.
> > + * Now, we cannot simply roll the accumulated second back, since
> > + * the NTP subsystem has been notified via second_overflow. So
> > + * instead we push xtime_nsec forward by the amount we underflowed,
> > + * and add that amount into the error.
> > + * We'll correct this error next time through this function, when
> > + * xtime_nsec is not as small.
> > + */
> > + if (unlikely((s64)clock->xtime_nsec < 0)) {
> > + s64 neg = -(s64)clock->xtime_nsec;
> > + clock->xtime_nsec = 0;
> > + clock->error += neg << (NTP_SCALE_SHIFT - clock->shift);
> > + }
>
> I don't mind this solution, but to be precise it avoids the problem.
> My favourite solution would involve improving the xtime handling, as it's
> not really necessary to copy the nsec value back and forth between xtime
> and xtime_nsec, but it requires going through all xtime users, especially
> all settimeofday implementations, which also have to set xtime_nsec so
> update_wall_time() doesn't has to read it in. Then it's possible to make
> xtime_nsec signed and allow it to be negative.
> So avoiding the negative nsec value is the better shorttime solution, but
> I'd prefer you'd drop the second paragraph, instead of suggesting a broken
> solution I'd rather see a bit info about how to fix this properly, i.e.
> fixing the xtime handling, so it's safe to allow negative values.
>
> bye, Roman
next prev parent reply other threads:[~2008-12-03 3:03 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-12-02 2:34 john stultz
2008-12-03 2:35 ` Roman Zippel
2008-12-03 3:01 ` Zhang, Yanmin [this message]
2008-12-03 3:48 ` Roman Zippel
2008-12-03 4:45 ` Zhang, Yanmin
2008-12-03 16:09 ` Roman Zippel
2008-12-04 21:19 ` 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=1228273295.2866.189.camel@ymzhang \
--to=yanmin_zhang@linux.intel.com \
--cc=akpm@linux-foundation.org \
--cc=alex.shi@intel.com \
--cc=johnstul@us.ibm.com \
--cc=linux-kernel@vger.kernel.org \
--cc=tglx@tglx.de \
--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
Powered by JetHome