diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2005-10-27 22:12:41 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2005-10-27 22:12:41 -0400 |
commit | 3338c143b4fde2d256016b63043ec8e2c93eba19 (patch) | |
tree | babfe2188e64ea0bb37c9838f5bcd3337c0c7504 /fs | |
parent | 56ae19f38f10aad4f27f7e12138a29b295dff07a (diff) | |
download | op-kernel-dev-3338c143b4fde2d256016b63043ec8e2c93eba19.zip op-kernel-dev-3338c143b4fde2d256016b63043ec8e2c93eba19.tar.gz |
NFS: Optimise attribute revalidation on close().
Only force a getattr in nfs_file_flush() if the attribute
cache is stale.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/nfs/file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/nfs/file.c b/fs/nfs/file.c index 572d859..57d3e77 100644 --- a/fs/nfs/file.c +++ b/fs/nfs/file.c @@ -205,8 +205,8 @@ nfs_file_flush(struct file *file) if (!status) { status = ctx->error; ctx->error = 0; - if (!status && !nfs_have_delegation(inode, FMODE_READ)) - __nfs_revalidate_inode(NFS_SERVER(inode), inode); + if (!status) + nfs_revalidate_inode(NFS_SERVER(inode), inode); } unlock_kernel(); return status; |