dect
/
linux-2.6
Archived
13
0
Fork 0

NFSv4: ACCESS validation doesn't require a full attribute refresh

We only really need to check the change attribute, so let's just use the
server->cache_consistency_bitmask.

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
This commit is contained in:
Trond Myklebust 2012-01-30 15:43:56 -05:00
parent 8b7e3f49dd
commit a4980e7840
1 changed files with 1 additions and 1 deletions

View File

@ -2512,7 +2512,7 @@ static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry
struct nfs_server *server = NFS_SERVER(inode);
struct nfs4_accessargs args = {
.fh = NFS_FH(inode),
.bitmask = server->attr_bitmask,
.bitmask = server->cache_consistency_bitmask,
};
struct nfs4_accessres res = {
.server = server,