diff options
author | Trond Myklebust <trond.myklebust@primarydata.com> | 2017-07-11 17:54:34 -0400 |
---|---|---|
committer | Anna Schumaker <Anna.Schumaker@Netapp.com> | 2017-07-21 11:51:19 -0400 |
commit | bd8b2441742b49c76bec707757bd9c028ea9838e (patch) | |
tree | 950978dc49c18fe92a7e17b63f3a07286c463e1a /include | |
parent | eda3e20847788c453aa7ab478aeaceb56ed29cb6 (diff) | |
download | linux-bd8b2441742b49c76bec707757bd9c028ea9838e.tar.gz linux-bd8b2441742b49c76bec707757bd9c028ea9838e.tar.bz2 linux-bd8b2441742b49c76bec707757bd9c028ea9838e.zip |
NFS: Store the raw NFS access mask in the inode's access cache
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/nfs_fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/nfs_fs.h b/include/linux/nfs_fs.h index e52cc55ac300..5cc91d6381a3 100644 --- a/include/linux/nfs_fs.h +++ b/include/linux/nfs_fs.h @@ -51,7 +51,7 @@ struct nfs_access_entry { struct list_head lru; unsigned long jiffies; struct rpc_cred * cred; - int mask; + __u32 mask; struct rcu_head rcu_head; }; |