diff options
| author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2010-04-16 16:42:46 -0400 |
|---|---|---|
| committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2010-05-14 15:09:30 -0400 |
| commit | d7cf8dd01289b3c64057e38d34c2857f6633d52c (patch) | |
| tree | 600143a42314da064fc0b8dec236c85f2f45d16b | |
| parent | a8ce4a8f37fef0a09a1e920c2e09f67a80426c7e (diff) | |
NFSv4: Allow attribute caching with 'noac' mounts if client holds a delegation
If the server has given us a delegation on a file, we _know_ that we can
cache the attribute information even when the user has specified 'noac'.
Reviewed-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
| -rw-r--r-- | fs/nfs/file.c | 15 | ||||
| -rw-r--r-- | fs/nfs/inode.c | 12 |
2 files changed, 18 insertions, 9 deletions
diff --git a/fs/nfs/file.c b/fs/nfs/file.c index 8d965bddb87e..cac96bcc91e4 100644 --- a/fs/nfs/file.c +++ b/fs/nfs/file.c | |||
| @@ -161,14 +161,17 @@ static int nfs_revalidate_file_size(struct inode *inode, struct file *filp) | |||
| 161 | struct nfs_server *server = NFS_SERVER(inode); | 161 | struct nfs_server *server = NFS_SERVER(inode); |
| 162 | struct nfs_inode *nfsi = NFS_I(inode); | 162 | struct nfs_inode *nfsi = NFS_I(inode); |
| 163 | 163 | ||
| 164 | if (server->flags & NFS_MOUNT_NOAC) | 164 | if (nfs_have_delegated_attributes(inode)) |
| 165 | goto force_reval; | 165 | goto out_noreval; |
| 166 | |||
| 166 | if (filp->f_flags & O_DIRECT) | 167 | if (filp->f_flags & O_DIRECT) |
| 167 | goto force_reval; | 168 | goto force_reval; |
| 168 | if (nfsi->npages != 0) | 169 | if (nfsi->cache_validity & NFS_INO_REVAL_PAGECACHE) |
| 169 | return 0; | 170 | goto force_reval; |
| 170 | if (!(nfsi->cache_validity & NFS_INO_REVAL_PAGECACHE) && !nfs_attribute_timeout(inode)) | 171 | if (nfs_attribute_timeout(inode)) |
| 171 | return 0; | 172 | goto force_reval; |
| 173 | out_noreval: | ||
| 174 | return 0; | ||
| 172 | force_reval: | 175 | force_reval: |
| 173 | return __nfs_revalidate_inode(server, inode); | 176 | return __nfs_revalidate_inode(server, inode); |
| 174 | } | 177 | } |
diff --git a/fs/nfs/inode.c b/fs/nfs/inode.c index 2fe6657a5048..099b3518feea 100644 --- a/fs/nfs/inode.c +++ b/fs/nfs/inode.c | |||
| @@ -742,9 +742,14 @@ int nfs_attribute_timeout(struct inode *inode) | |||
| 742 | { | 742 | { |
| 743 | struct nfs_inode *nfsi = NFS_I(inode); | 743 | struct nfs_inode *nfsi = NFS_I(inode); |
| 744 | 744 | ||
| 745 | return !time_in_range_open(jiffies, nfsi->read_cache_jiffies, nfsi->read_cache_jiffies + nfsi->attrtimeo); | ||
| 746 | } | ||
| 747 | |||
| 748 | static int nfs_attribute_cache_expired(struct inode *inode) | ||
| 749 | { | ||
| 745 | if (nfs_have_delegated_attributes(inode)) | 750 | if (nfs_have_delegated_attributes(inode)) |
| 746 | return 0; | 751 | return 0; |
| 747 | return !time_in_range_open(jiffies, nfsi->read_cache_jiffies, nfsi->read_cache_jiffies + nfsi->attrtimeo); | 752 | return nfs_attribute_timeout(inode); |
| 748 | } | 753 | } |
| 749 | 754 | ||
| 750 | /** | 755 | /** |
| @@ -757,7 +762,7 @@ int nfs_attribute_timeout(struct inode *inode) | |||
| 757 | int nfs_revalidate_inode(struct nfs_server *server, struct inode *inode) | 762 | int nfs_revalidate_inode(struct nfs_server *server, struct inode *inode) |
| 758 | { | 763 | { |
| 759 | if (!(NFS_I(inode)->cache_validity & NFS_INO_INVALID_ATTR) | 764 | if (!(NFS_I(inode)->cache_validity & NFS_INO_INVALID_ATTR) |
| 760 | && !nfs_attribute_timeout(inode)) | 765 | && !nfs_attribute_cache_expired(inode)) |
| 761 | return NFS_STALE(inode) ? -ESTALE : 0; | 766 | return NFS_STALE(inode) ? -ESTALE : 0; |
| 762 | return __nfs_revalidate_inode(server, inode); | 767 | return __nfs_revalidate_inode(server, inode); |
| 763 | } | 768 | } |
| @@ -794,7 +799,8 @@ int nfs_revalidate_mapping(struct inode *inode, struct address_space *mapping) | |||
| 794 | int ret = 0; | 799 | int ret = 0; |
| 795 | 800 | ||
| 796 | if ((nfsi->cache_validity & NFS_INO_REVAL_PAGECACHE) | 801 | if ((nfsi->cache_validity & NFS_INO_REVAL_PAGECACHE) |
| 797 | || nfs_attribute_timeout(inode) || NFS_STALE(inode)) { | 802 | || nfs_attribute_cache_expired(inode) |
| 803 | || NFS_STALE(inode)) { | ||
| 798 | ret = __nfs_revalidate_inode(NFS_SERVER(inode), inode); | 804 | ret = __nfs_revalidate_inode(NFS_SERVER(inode), inode); |
| 799 | if (ret < 0) | 805 | if (ret < 0) |
| 800 | goto out; | 806 | goto out; |
