diff options
Diffstat (limited to 'fatfs')
-rw-r--r-- | fatfs/ChangeLog | 5 | ||||
-rw-r--r-- | fatfs/dir.c | 12 |
2 files changed, 9 insertions, 8 deletions
diff --git a/fatfs/ChangeLog b/fatfs/ChangeLog index 5c9eeb5c..3348fdd6 100644 --- a/fatfs/ChangeLog +++ b/fatfs/ChangeLog @@ -1,3 +1,8 @@ +2007-08-16 Samuel Thibault <samuel.thibault@ens-lyon.org> + + * dir.c (diskfs_lookup_hard, diskfs_dirempty): Call + diskfs_set_node_atime instead of setting dp->dn_set_atime. + 2007-03-31 Thomas Schwinge <tschwinge@gnu.org> * Makefile (HURDLIBS): Put ``threads'' in front of ``ports''. diff --git a/fatfs/dir.c b/fatfs/dir.c index 78a44edc..87b9994d 100644 --- a/fatfs/dir.c +++ b/fatfs/dir.c @@ -231,8 +231,7 @@ diskfs_lookup_hard (struct node *dp, const char *name, enum lookup_type type, inum = 0; - if (!diskfs_check_readonly ()) - dp->dn_set_atime = 1; + diskfs_set_node_atime (dp); /* Start the lookup at DP->dn->dir_idx. */ idx = dp->dn->dir_idx; @@ -269,8 +268,7 @@ diskfs_lookup_hard (struct node *dp, const char *name, enum lookup_type type, } } - if (!diskfs_check_readonly ()) - dp->dn_set_atime = 1; + diskfs_set_node_atime (dp); if (diskfs_synchronous) diskfs_node_update (dp, 1); @@ -781,8 +779,7 @@ diskfs_dirempty (struct node *dp, struct protid *cred) mach_port_deallocate (mach_task_self (), memobj); assert (!err); - if (! diskfs_check_readonly ()) - dp->dn_set_atime = 1; + diskfs_set_node_atime (dp); for (curoff = buf; !hit && curoff < buf + dp->dn_stat.st_size; @@ -798,8 +795,7 @@ diskfs_dirempty (struct node *dp, struct protid *cred) hit = 1; } - if (! diskfs_check_readonly ()) - dp->dn_set_atime = 1; + diskfs_set_node_atime (dp); if (diskfs_synchronous) diskfs_node_update (dp, 1); |