From 1da83cd874f945720b3ee399c6933e9bc5323361 Mon Sep 17 00:00:00 2001 From: "Michael I. Bushnell" Date: Tue, 16 Apr 1996 19:16:32 +0000 Subject: (diskfs_lookup): Always update atime after I/O. --- libdiskfs/lookup.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'libdiskfs') diff --git a/libdiskfs/lookup.c b/libdiskfs/lookup.c index 6baa78bb..058d0f69 100644 --- a/libdiskfs/lookup.c +++ b/libdiskfs/lookup.c @@ -99,6 +99,7 @@ diskfs_lookup (struct node *dp, char *name, enum lookup_type type, { if (np) *np = 0; + dp->dn_set_atime = 1; return ENOENT; } else if (cached) @@ -114,11 +115,13 @@ diskfs_lookup (struct node *dp, char *name, enum lookup_type type, diskfs_nput (cached); if (ds) diskfs_null_dirstat (ds); + dp->dn_set_atime = 1; return 0; } } err = diskfs_lookup_hard (dp, name, type, np, ds, cred); + dp->dn_set_atime = 1; if (err && err != ENOENT) return err; -- cgit v1.2.3