aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nfs/inode.c
diff options
context:
space:
mode:
authorTrond Myklebust <Trond.Myklebust@netapp.com>2010-03-10 15:21:44 -0500
committerTrond Myklebust <Trond.Myklebust@netapp.com>2010-03-10 15:21:44 -0500
commitb4d2314bb88b07e5a04e6c75b442a1dfcd60e340 (patch)
tree9727944bf30a47cf02f9b9547adcaeafeee25843 /fs/nfs/inode.c
parent49697ee79242d5f8ac88f1ebc62e583d16bcc687 (diff)
downloadkernel_samsung_smdk4412-b4d2314bb88b07e5a04e6c75b442a1dfcd60e340.zip
kernel_samsung_smdk4412-b4d2314bb88b07e5a04e6c75b442a1dfcd60e340.tar.gz
kernel_samsung_smdk4412-b4d2314bb88b07e5a04e6c75b442a1dfcd60e340.tar.bz2
NFSv4: Don't ignore the NFS_INO_REVAL_FORCED flag in nfs_revalidate_inode()
If the NFS_INO_REVAL_FORCED flag is set, that means that we don't yet have an up to date attribute cache. Even if we hold a delegation, we must put a GETATTR on the wire. Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> Cc: stable@kernel.org
Diffstat (limited to 'fs/nfs/inode.c')
-rw-r--r--fs/nfs/inode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/inode.c b/fs/nfs/inode.c
index 657201a..e358df7 100644
--- a/fs/nfs/inode.c
+++ b/fs/nfs/inode.c
@@ -729,7 +729,7 @@ int nfs_attribute_timeout(struct inode *inode)
{
struct nfs_inode *nfsi = NFS_I(inode);
- if (nfs_have_delegation(inode, FMODE_READ))
+ if (nfs_have_delegated_attributes(inode))
return 0;
return !time_in_range_open(jiffies, nfsi->read_cache_jiffies, nfsi->read_cache_jiffies + nfsi->attrtimeo);
}