In message <[EMAIL PROTECTED]>, "Andrey A. Chernov" writes:
>On Wed, Feb 05, 2003 at 20:52:54 +0100, [EMAIL PROTECTED] wrote:
>>
>> My guess: Your RTC has the wrong time and ntpdate or similar stepped
>> your clock to be correct.
>
>It is each boot repeated effect, not one time.
>I run local clock in BIOS and use adjkerntz(8) to correct kernel time to
>GMT, via standard /etc/wall_cmos_clock knob. It there any chance that
>DEVFS comes up in the middle? If yes, is there any ideas for workaround?
You can try this patch instead. It has a different side effect:
if you reset your clock the (untouched) timestamps will change.
Index: devfs_vnops.c
===================================================================
RCS file: /home/ncvs/src/sys/fs/devfs/devfs_vnops.c,v
retrieving revision 1.60
diff -u -r1.60 devfs_vnops.c
--- devfs_vnops.c 29 Jan 2003 22:36:45 -0000 1.60
+++ devfs_vnops.c 5 Feb 2003 19:58:52 -0000
@@ -243,22 +243,19 @@
} while (0)
if (vp->v_type != VCHR) {
- fix(de->de_atime);
vap->va_atime = de->de_atime;
- fix(de->de_mtime);
vap->va_mtime = de->de_mtime;
- fix(de->de_ctime);
vap->va_ctime = de->de_ctime;
} else {
dev = vp->v_rdev;
- fix(dev->si_atime);
vap->va_atime = dev->si_atime;
- fix(dev->si_mtime);
vap->va_mtime = dev->si_mtime;
- fix(dev->si_ctime);
vap->va_ctime = dev->si_ctime;
vap->va_rdev = dev->si_udev;
}
+ fix(vap->va_atime);
+ fix(vap->va_mtime);
+ fix(vap->va_ctime);
vap->va_gen = 0;
vap->va_flags = 0;
vap->va_nlink = de->de_links;
--
Poul-Henning Kamp | UNIX since Zilog Zeus 3.20
[EMAIL PROTECTED] | TCP/IP since RFC 956
FreeBSD committer | BSD since 4.3-tahoe
Never attribute to malice what can adequately be explained by incompetence.
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message