Re: /proc or ps tools bug? 2.6.3, time is off

From: George Anzinger
Date: Wed Feb 25 2004 - 11:38:04 EST


Albert Cahalan wrote:
On Wed, 2004-02-25 at 00:10, David Ford wrote:


I can see if a process long in the past would have a different time set on it, but shouldn't the entry in /proc coincide with the system clock that date is accessing? Or how many different "clocks" does the kernel have going?


There are way too many clocks, none of which are good.


Actually, it seems that there is a -significant- time difference in this phantom clock now, I suspended my notebook to bring it home from the station, and now this time difference is greater than 9 minutes. I suspect it's roughly 46 seconds plus the amount of time that my notebook was suspended. Yes, I'm running ntpd.

root 16894 0.0 0.0 1544 484 pts/3 S Feb24 0:00 grep grep ps
Wed Feb 25 00:09:09 EST 2004


OK, this is pointing right at the problem.

Linux does not record process start times at all.
Instead, it records the number of clock ticks
from boot until the process starts.

Either the boot time or current time is real.
The other may be computed from the uptime, which
may be measured in clock ticks.

In 2.6.* boot time is captured at boot. This is then adjusted when ever the clock is set. Up time is the difference between the saved boot time and the current wall clock time.

The clock doesn't tick when your laptop sleeps.

I would guess that the clock adjustment made when the sleep ends is not adjusting the boot time as it should. That code should set the clock by calling do_settimeofday() which will do the right thing.

As to small drifts of ~170 PPM, they are caused by code (ps I would guess) that assumes that jiffies is exactly 1/HZ whereas it is NOT in the 2.6.* kernel. The size of the jiffie that the kernel uses is returned by:

struct timespec tv;
:
:
clock_res(CLOCK_REALTIME, &tv);

This will be in nanoseconds (and must be as that is what the wall clock is in).
George

I seem to recall recent changes to the way the
boot time in /proc/stat gets reported. In any
case, a sleeping laptop suggests some interesting
questions about process run times.


Here's another one to make you scream: Linux does
not supply real %CPU data.


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/


--
George Anzinger george@xxxxxxxxxx
High-res-timers: http://sourceforge.net/projects/high-res-timers/
Preemption patch: http://www.kernel.org/pub/linux/kernel/people/rml

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/