summaryrefslogtreecommitdiffstats
path: root/include/linux/nfs_fs.h
diff options
context:
space:
mode:
authorTrond Myklebust2007-10-01 16:00:23 +0200
committerTrond Myklebust2007-10-09 23:19:40 +0200
commitf38211100d4823be530577dc3452f838861222ec (patch)
treeaf73251d3c4a71deee6b800f62b748759b87cb44 /include/linux/nfs_fs.h
parentNFS: nfs_post_op_update_inode don't update cache_change_attribute (diff)
downloadkernel-qcow2-linux-f38211100d4823be530577dc3452f838861222ec.tar.gz
kernel-qcow2-linux-f38211100d4823be530577dc3452f838861222ec.tar.xz
kernel-qcow2-linux-f38211100d4823be530577dc3452f838861222ec.zip
NFS: nfs_mark_for_revalidate don't update cache_change_attribute
Just let the subsequent inode revalidation do the update... Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'include/linux/nfs_fs.h')
-rw-r--r--include/linux/nfs_fs.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/linux/nfs_fs.h b/include/linux/nfs_fs.h
index 0197b1243fe0..35d61924e0b9 100644
--- a/include/linux/nfs_fs.h
+++ b/include/linux/nfs_fs.h
@@ -235,10 +235,8 @@ static inline void nfs_mark_for_revalidate(struct inode *inode)
spin_lock(&inode->i_lock);
nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_ACCESS;
- if (S_ISDIR(inode->i_mode)) {
+ if (S_ISDIR(inode->i_mode))
nfsi->cache_validity |= NFS_INO_REVAL_PAGECACHE|NFS_INO_INVALID_DATA;
- nfsi->cache_change_attribute = jiffies;
- }
spin_unlock(&inode->i_lock);
}