diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2007-09-28 17:11:45 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2007-10-09 17:19:03 -0400 |
commit | c4812998398d9cbce8646494704c52297359ede0 (patch) | |
tree | 8c7b786779b03d1960c25800a7a27a10f8318e99 /fs/nfs/nfs3proc.c | |
parent | 57fa76f2da05d0fee597b26bbc1f05242252beab (diff) |
NFS: Fix atime revalidation in readdir()
NFSv3 will correctly update atime on a readdir call, so there is no need to
set the NFS_INO_INVALID_ATIME flag unless the call to nfs_refresh_inode()
fails.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs/nfs3proc.c')
-rw-r--r-- | fs/nfs/nfs3proc.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/nfs/nfs3proc.c b/fs/nfs/nfs3proc.c index c7ca5d70870b..0ae263cdedc6 100644 --- a/fs/nfs/nfs3proc.c +++ b/fs/nfs/nfs3proc.c | |||
@@ -607,6 +607,9 @@ nfs3_proc_readdir(struct dentry *dentry, struct rpc_cred *cred, | |||
607 | 607 | ||
608 | nfs_fattr_init(&dir_attr); | 608 | nfs_fattr_init(&dir_attr); |
609 | status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0); | 609 | status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0); |
610 | |||
611 | nfs_invalidate_atime(dir); | ||
612 | |||
610 | nfs_refresh_inode(dir, &dir_attr); | 613 | nfs_refresh_inode(dir, &dir_attr); |
611 | dprintk("NFS reply readdir: %d\n", status); | 614 | dprintk("NFS reply readdir: %d\n", status); |
612 | return status; | 615 | return status; |