linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Joel Becker <Joel.Becker@oracle.com>
To: george anzinger <george@mvista.com>
Cc: john stultz <johnstul@us.ibm.com>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: Clock monotonic  a suggestion
Date: Thu, 20 Mar 2003 18:50:46 -0800	[thread overview]
Message-ID: <20030321025045.GX2835@ca-server1.us.oracle.com> (raw)
In-Reply-To: <3E7A59CD.8040700@mvista.com>

On Thu, Mar 20, 2003 at 04:16:13PM -0800, george anzinger wrote:
> Define CLOCK_MONOTONIC to be the same as
> (gettimeofday() + wall_to_monotonic).
> ...
> Both clocks will tick at the same rate, even under NTP corrections.
> The conversion is a simple (well almost simple) add.
> Both clocks will have the same resolution.

	The issue for CLOCK_MONOTONIC isn't one of resolution.  The
issue is one of accuracy.  If the monotonic clock is ever allowed to
have an offset or a fudge factor, it is broken.  Asking the monotonic
clock for time must always, without fail, return the exact, accurate
time since boot (or whatever sentinal time) in the the units monotonic
clock is using.  This precludes gettimeofday().
	If the system is delayed (udelay() or such) by a driver or 
something for 10 seconds, then you have this (assume gettimeofday is
in seconds for simplicity):

1    gettimeofday = 1000000000
2    driver delays 10s
3    gettimeofday = 1000000000
4    timer notices lag and adjusts
5    gettimeofday = 1000000010

	In the usual case, if a program calls gettimeofday() between 3
and 4, the program gets the wrong time.  For most programs, this doesn't
matter.  CLOCK_MONOTONIC is designed for those uses where it absolutely
matters.  If an application queries CLOCK_MONOTONIC at 3.5, it must
return 1000000010, not 1000000000.

Joel
-- 

"A narcissist is someone better looking than you are."  
         - Gore Vidal

Joel Becker
Senior Member of Technical Staff
Oracle Corporation
E-mail: joel.becker@oracle.com
Phone: (650) 506-8127

  reply	other threads:[~2003-03-21  2:40 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-03-21  0:16 Clock monotonic a suggestion george anzinger
2003-03-21  2:50 ` Joel Becker [this message]
2003-03-21  5:53   ` Chris Friesen
2003-03-21  8:10     ` george anzinger
2003-03-21  8:01   ` george anzinger
2003-03-21 19:43     ` Joel Becker
2003-03-21 20:53     ` john stultz
2003-03-21 13:17 ` Martin Waitz
2003-03-21 19:18   ` george anzinger
2003-03-21 19:46     ` Joel Becker
2003-03-21 19:44   ` Joel Becker

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=20030321025045.GX2835@ca-server1.us.oracle.com \
    --to=joel.becker@oracle.com \
    --cc=george@mvista.com \
    --cc=johnstul@us.ibm.com \
    --cc=linux-kernel@vger.kernel.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;
as well as URLs for NNTP newsgroup(s).