|
@@ -712,14 +712,7 @@ int nfs_attribute_timeout(struct inode *inode)
|
|
|
|
|
|
if (nfs_have_delegation(inode, FMODE_READ))
|
|
|
return 0;
|
|
|
- /*
|
|
|
- * Special case: if the attribute timeout is set to 0, then always
|
|
|
- * treat the cache as having expired (unless holding
|
|
|
- * a delegation).
|
|
|
- */
|
|
|
- if (nfsi->attrtimeo == 0)
|
|
|
- return 1;
|
|
|
- return !time_in_range(jiffies, nfsi->read_cache_jiffies, nfsi->read_cache_jiffies + nfsi->attrtimeo);
|
|
|
+ return !time_in_range_open(jiffies, nfsi->read_cache_jiffies, nfsi->read_cache_jiffies + nfsi->attrtimeo);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -1182,7 +1175,7 @@ static int nfs_update_inode(struct inode *inode, struct nfs_fattr *fattr)
|
|
|
nfsi->attrtimeo_timestamp = now;
|
|
|
nfsi->attr_gencount = nfs_inc_attr_generation_counter();
|
|
|
} else {
|
|
|
- if (!time_in_range(now, nfsi->attrtimeo_timestamp, nfsi->attrtimeo_timestamp + nfsi->attrtimeo)) {
|
|
|
+ if (!time_in_range_open(now, nfsi->attrtimeo_timestamp, nfsi->attrtimeo_timestamp + nfsi->attrtimeo)) {
|
|
|
if ((nfsi->attrtimeo <<= 1) > NFS_MAXATTRTIMEO(inode))
|
|
|
nfsi->attrtimeo = NFS_MAXATTRTIMEO(inode);
|
|
|
nfsi->attrtimeo_timestamp = now;
|