From 9399d2c5ad7eeeeab477b87e18d4e917358bff27 Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Sun, 7 Jun 1998 11:04:26 +0000 Subject: [PATCH] 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. --- sys/ufs/ufs/ufs_vnops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/ufs/ufs/ufs_vnops.c b/sys/ufs/ufs/ufs_vnops.c index 97a6f8a7582..b21c99045dd 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"