diff options
author | bde <bde@FreeBSD.org> | 1998-06-07 11:04:26 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-06-07 11:04:26 +0000 |
commit | b8ca4196f107dd0412d3e5c9cbae59dd1bb43b6e (patch) | |
tree | 039212fea3e8e5e58989e66986f78ff98a007b2d /sys/ufs | |
parent | c19c19de298dd601b39f524a21bc2beed1cb6bb0 (diff) | |
download | FreeBSD-src-b8ca4196f107dd0412d3e5c9cbae59dd1bb43b6e.zip FreeBSD-src-b8ca4196f107dd0412d3e5c9cbae59dd1bb43b6e.tar.gz |
Null change. Forgot to mention in previous log message that MNT_NOATIME
is now ignored for special files, so that mounting root with option
noatime doesn't break reporting of idle times in programs like `w'.
The problem of execessive disk updates just to stamp atimes will be
handled for special files by only writing atimes to disk when inodes
become active. This works well because special files are relatively
uncommon and their atimes are even more disposable at panic time than
regular files' atimes.
Diffstat (limited to 'sys/ufs')
-rw-r--r-- | sys/ufs/ufs/ufs_vnops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/ufs/ufs/ufs_vnops.c b/sys/ufs/ufs/ufs_vnops.c index 97a6f8a..b21c990 100644 --- a/sys/ufs/ufs/ufs_vnops.c +++ b/sys/ufs/ufs/ufs_vnops.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)ufs_vnops.c 8.27 (Berkeley) 5/27/95 - * $Id: ufs_vnops.c,v 1.85 1998/05/17 11:53:46 phk Exp $ + * $Id: ufs_vnops.c,v 1.86 1998/06/07 10:49:18 bde Exp $ */ #include "opt_quota.h" |