aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/nfs_fs.h2
-rw-r--r--include/linux/nfs_xdr.h3
2 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/nfs_fs.h b/include/linux/nfs_fs.h
index 383f3313f053..334a2f5f6bf1 100644
--- a/include/linux/nfs_fs.h
+++ b/include/linux/nfs_fs.h
@@ -360,6 +360,8 @@ extern int nfs_refresh_inode(struct inode *, struct nfs_fattr *);
360extern int nfs_post_op_update_inode(struct inode *inode, struct nfs_fattr *fattr); 360extern int nfs_post_op_update_inode(struct inode *inode, struct nfs_fattr *fattr);
361extern int nfs_post_op_update_inode_force_wcc(struct inode *inode, struct nfs_fattr *fattr); 361extern int nfs_post_op_update_inode_force_wcc(struct inode *inode, struct nfs_fattr *fattr);
362extern int nfs_getattr(struct vfsmount *, struct dentry *, struct kstat *); 362extern int nfs_getattr(struct vfsmount *, struct dentry *, struct kstat *);
363extern void nfs_access_add_cache(struct inode *, struct nfs_access_entry *);
364extern void nfs_access_set_mask(struct nfs_access_entry *, u32);
363extern int nfs_permission(struct inode *, int); 365extern int nfs_permission(struct inode *, int);
364extern int nfs_open(struct inode *, struct file *); 366extern int nfs_open(struct inode *, struct file *);
365extern int nfs_release(struct inode *, struct file *); 367extern int nfs_release(struct inode *, struct file *);
diff --git a/include/linux/nfs_xdr.h b/include/linux/nfs_xdr.h
index 5da789fdf25b..655490dae953 100644
--- a/include/linux/nfs_xdr.h
+++ b/include/linux/nfs_xdr.h
@@ -334,6 +334,7 @@ struct nfs_openargs {
334 struct nfs_seqid * seqid; 334 struct nfs_seqid * seqid;
335 int open_flags; 335 int open_flags;
336 fmode_t fmode; 336 fmode_t fmode;
337 u32 access;
337 __u64 clientid; 338 __u64 clientid;
338 struct stateowner_id id; 339 struct stateowner_id id;
339 union { 340 union {
@@ -368,6 +369,8 @@ struct nfs_openres {
368 struct nfs4_string *owner; 369 struct nfs4_string *owner;
369 struct nfs4_string *group_owner; 370 struct nfs4_string *group_owner;
370 struct nfs4_sequence_res seq_res; 371 struct nfs4_sequence_res seq_res;
372 __u32 access_supported;
373 __u32 access_result;
371}; 374};
372 375
373/* 376/*