Re: [PATCH] Re: boot time, process start time, and NOW time

From: George Anzinger
Date: Fri Sep 03 2004 - 02:38:02 EST


OGAWA Hirofumi wrote:
George Anzinger <george@xxxxxxxxxx> writes:


The cause of this is
INITIAL_JIFFIES % HZ (4294667296 % 1000)
because INITIAL_JIFFIES is unsigned long.
So, I guessed this is not intention.
Looks like this should be (-300*1000) % 1000.

What "should be"?


in time_init(), and hpet_time_init(),
xtime.tv_nsec = (INITIAL_JIFFIES % HZ) * (NSEC_PER_SEC / HZ);
should be
xtime.tv_nsec = ((long)INITIAL_JIFFIES % HZ) * (NSEC_PER_SEC / HZ);

because
(INITIAL_JIFFIES % HZ) * (NSEC_PER_SEC / HZ) == 296000000
and
((long)INITIAL_JIFFIES % HZ) * (NSEC_PER_SEC / HZ) == 0

It is possible that I am missing something here, but I just don't see that it matters. If the wall clock is set jiffies is not changed so there is no implied or actual alignment between these two.

Is there a calculation in the system that would differ if this were changed?

--
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/