diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2010-03-10 15:21:44 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-04-01 19:01:33 -0400 |
commit | 5783f0ea37c2693675709c1dcb27281f4500c6f9 (patch) | |
tree | 587f6dc483cb2b1c242a6779f9633eb80e5ba888 /fs/nfs | |
parent | ae56fa68db2da81677393b9a3b777b96ac683cbb (diff) |
NFSv4: Don't ignore the NFS_INO_REVAL_FORCED flag in nfs_revalidate_inode()
commit b4d2314bb88b07e5a04e6c75b442a1dfcd60e340 upstream.
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>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'fs/nfs')
-rw-r--r-- | fs/nfs/delegation.h | 6 | ||||
-rw-r--r-- | fs/nfs/dir.c | 2 | ||||
-rw-r--r-- | fs/nfs/inode.c | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/fs/nfs/delegation.h b/fs/nfs/delegation.h index 944b627ec6e1..69e7b8140122 100644 --- a/fs/nfs/delegation.h +++ b/fs/nfs/delegation.h | |||
@@ -71,4 +71,10 @@ static inline int nfs_inode_return_delegation(struct inode *inode) | |||
71 | } | 71 | } |
72 | #endif | 72 | #endif |
73 | 73 | ||
74 | static inline int nfs_have_delegated_attributes(struct inode *inode) | ||
75 | { | ||
76 | return nfs_have_delegation(inode, FMODE_READ) && | ||
77 | !(NFS_I(inode)->cache_validity & NFS_INO_REVAL_FORCED); | ||
78 | } | ||
79 | |||
74 | #endif | 80 | #endif |
diff --git a/fs/nfs/dir.c b/fs/nfs/dir.c index 3c7f03b669fb..8b5382efd454 100644 --- a/fs/nfs/dir.c +++ b/fs/nfs/dir.c | |||
@@ -1789,7 +1789,7 @@ static int nfs_access_get_cached(struct inode *inode, struct rpc_cred *cred, str | |||
1789 | cache = nfs_access_search_rbtree(inode, cred); | 1789 | cache = nfs_access_search_rbtree(inode, cred); |
1790 | if (cache == NULL) | 1790 | if (cache == NULL) |
1791 | goto out; | 1791 | goto out; |
1792 | if (!nfs_have_delegation(inode, FMODE_READ) && | 1792 | if (!nfs_have_delegated_attributes(inode) && |
1793 | !time_in_range_open(jiffies, cache->jiffies, cache->jiffies + nfsi->attrtimeo)) | 1793 | !time_in_range_open(jiffies, cache->jiffies, cache->jiffies + nfsi->attrtimeo)) |
1794 | goto out_stale; | 1794 | goto out_stale; |
1795 | res->jiffies = cache->jiffies; | 1795 | res->jiffies = cache->jiffies; |
diff --git a/fs/nfs/inode.c b/fs/nfs/inode.c index f141bde7756a..5f59a2df21aa 100644 --- a/fs/nfs/inode.c +++ b/fs/nfs/inode.c | |||
@@ -759,7 +759,7 @@ int nfs_attribute_timeout(struct inode *inode) | |||
759 | { | 759 | { |
760 | struct nfs_inode *nfsi = NFS_I(inode); | 760 | struct nfs_inode *nfsi = NFS_I(inode); |
761 | 761 | ||
762 | if (nfs_have_delegation(inode, FMODE_READ)) | 762 | if (nfs_have_delegated_attributes(inode)) |
763 | return 0; | 763 | return 0; |
764 | return !time_in_range_open(jiffies, nfsi->read_cache_jiffies, nfsi->read_cache_jiffies + nfsi->attrtimeo); | 764 | return !time_in_range_open(jiffies, nfsi->read_cache_jiffies, nfsi->read_cache_jiffies + nfsi->attrtimeo); |
765 | } | 765 | } |