Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef _LINUX_NFS_XDR_H |
| 2 | #define _LINUX_NFS_XDR_H |
| 3 | |
Andreas Gruenbacher | b7fa055 | 2005-06-22 17:16:27 +0000 | [diff] [blame] | 4 | #include <linux/nfsacl.h> |
Boaz Harrosh | d703158 | 2009-12-03 20:28:47 +0200 | [diff] [blame] | 5 | #include <linux/nfs3.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | |
Chuck Lever | 40859d7 | 2005-11-30 18:09:02 -0500 | [diff] [blame] | 7 | /* |
| 8 | * To change the maximum rsize and wsize supported by the NFS client, adjust |
| 9 | * NFS_MAX_FILE_IO_SIZE. 64KB is a typical maximum, but some servers can |
| 10 | * support a megabyte or more. The default is left at 4096 bytes, which is |
| 11 | * reasonable for NFS over UDP. |
| 12 | */ |
| 13 | #define NFS_MAX_FILE_IO_SIZE (1048576U) |
| 14 | #define NFS_DEF_FILE_IO_SIZE (4096U) |
| 15 | #define NFS_MIN_FILE_IO_SIZE (1024U) |
| 16 | |
Trond Myklebust | 8b4bdcf | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 17 | struct nfs_fsid { |
| 18 | uint64_t major; |
| 19 | uint64_t minor; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | }; |
| 21 | |
Trond Myklebust | 8b4bdcf | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 22 | /* |
| 23 | * Helper for checking equality between 2 fsids. |
| 24 | */ |
| 25 | static inline int nfs_fsid_equal(const struct nfs_fsid *a, const struct nfs_fsid *b) |
| 26 | { |
| 27 | return a->major == b->major && a->minor == b->minor; |
| 28 | } |
| 29 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | struct nfs_fattr { |
Trond Myklebust | 9e6e70f | 2009-03-11 14:10:24 -0400 | [diff] [blame] | 31 | unsigned int valid; /* which fields are valid */ |
Trond Myklebust | bca7947 | 2009-03-11 14:10:26 -0400 | [diff] [blame] | 32 | umode_t mode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | __u32 nlink; |
| 34 | __u32 uid; |
| 35 | __u32 gid; |
Richard Kennedy | 9fa8d66 | 2008-08-26 16:23:20 +0100 | [diff] [blame] | 36 | dev_t rdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | __u64 size; |
| 38 | union { |
| 39 | struct { |
| 40 | __u32 blocksize; |
| 41 | __u32 blocks; |
| 42 | } nfs2; |
| 43 | struct { |
| 44 | __u64 used; |
| 45 | } nfs3; |
| 46 | } du; |
Trond Myklebust | 8b4bdcf | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 47 | struct nfs_fsid fsid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | __u64 fileid; |
| 49 | struct timespec atime; |
| 50 | struct timespec mtime; |
| 51 | struct timespec ctime; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | __u64 change_attr; /* NFSv4 change attribute */ |
| 53 | __u64 pre_change_attr;/* pre-op NFSv4 change attribute */ |
Trond Myklebust | 1ca277d | 2009-03-11 14:10:25 -0400 | [diff] [blame] | 54 | __u64 pre_size; /* pre_op_attr.size */ |
| 55 | struct timespec pre_mtime; /* pre_op_attr.mtime */ |
| 56 | struct timespec pre_ctime; /* pre_op_attr.ctime */ |
Trond Myklebust | 3380114 | 2005-10-27 22:12:39 -0400 | [diff] [blame] | 57 | unsigned long time_start; |
Trond Myklebust | 4704f0e | 2008-10-14 19:16:07 -0400 | [diff] [blame] | 58 | unsigned long gencount; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | }; |
| 60 | |
Trond Myklebust | 9e6e70f | 2009-03-11 14:10:24 -0400 | [diff] [blame] | 61 | #define NFS_ATTR_FATTR_TYPE (1U << 0) |
| 62 | #define NFS_ATTR_FATTR_MODE (1U << 1) |
| 63 | #define NFS_ATTR_FATTR_NLINK (1U << 2) |
| 64 | #define NFS_ATTR_FATTR_OWNER (1U << 3) |
| 65 | #define NFS_ATTR_FATTR_GROUP (1U << 4) |
| 66 | #define NFS_ATTR_FATTR_RDEV (1U << 5) |
| 67 | #define NFS_ATTR_FATTR_SIZE (1U << 6) |
| 68 | #define NFS_ATTR_FATTR_PRESIZE (1U << 7) |
| 69 | #define NFS_ATTR_FATTR_BLOCKS_USED (1U << 8) |
| 70 | #define NFS_ATTR_FATTR_SPACE_USED (1U << 9) |
| 71 | #define NFS_ATTR_FATTR_FSID (1U << 10) |
| 72 | #define NFS_ATTR_FATTR_FILEID (1U << 11) |
| 73 | #define NFS_ATTR_FATTR_ATIME (1U << 12) |
| 74 | #define NFS_ATTR_FATTR_MTIME (1U << 13) |
| 75 | #define NFS_ATTR_FATTR_CTIME (1U << 14) |
| 76 | #define NFS_ATTR_FATTR_PREMTIME (1U << 15) |
| 77 | #define NFS_ATTR_FATTR_PRECTIME (1U << 16) |
| 78 | #define NFS_ATTR_FATTR_CHANGE (1U << 17) |
| 79 | #define NFS_ATTR_FATTR_PRECHANGE (1U << 18) |
| 80 | #define NFS_ATTR_FATTR_V4_REFERRAL (1U << 19) /* NFSv4 referral */ |
| 81 | |
| 82 | #define NFS_ATTR_FATTR (NFS_ATTR_FATTR_TYPE \ |
| 83 | | NFS_ATTR_FATTR_MODE \ |
| 84 | | NFS_ATTR_FATTR_NLINK \ |
| 85 | | NFS_ATTR_FATTR_OWNER \ |
| 86 | | NFS_ATTR_FATTR_GROUP \ |
| 87 | | NFS_ATTR_FATTR_RDEV \ |
| 88 | | NFS_ATTR_FATTR_SIZE \ |
| 89 | | NFS_ATTR_FATTR_FSID \ |
| 90 | | NFS_ATTR_FATTR_FILEID \ |
| 91 | | NFS_ATTR_FATTR_ATIME \ |
| 92 | | NFS_ATTR_FATTR_MTIME \ |
| 93 | | NFS_ATTR_FATTR_CTIME) |
| 94 | #define NFS_ATTR_FATTR_V2 (NFS_ATTR_FATTR \ |
| 95 | | NFS_ATTR_FATTR_BLOCKS_USED) |
| 96 | #define NFS_ATTR_FATTR_V3 (NFS_ATTR_FATTR \ |
| 97 | | NFS_ATTR_FATTR_SPACE_USED) |
| 98 | #define NFS_ATTR_FATTR_V4 (NFS_ATTR_FATTR \ |
| 99 | | NFS_ATTR_FATTR_SPACE_USED \ |
| 100 | | NFS_ATTR_FATTR_CHANGE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | |
| 102 | /* |
| 103 | * Info on the file system |
| 104 | */ |
| 105 | struct nfs_fsinfo { |
| 106 | struct nfs_fattr *fattr; /* Post-op attributes */ |
| 107 | __u32 rtmax; /* max. read transfer size */ |
| 108 | __u32 rtpref; /* pref. read transfer size */ |
| 109 | __u32 rtmult; /* reads should be multiple of this */ |
| 110 | __u32 wtmax; /* max. write transfer size */ |
| 111 | __u32 wtpref; /* pref. write transfer size */ |
| 112 | __u32 wtmult; /* writes should be multiple of this */ |
| 113 | __u32 dtpref; /* pref. readdir transfer size */ |
| 114 | __u64 maxfilesize; |
Ricardo Labiaga | 6b96724 | 2010-10-12 16:30:05 -0700 | [diff] [blame] | 115 | struct timespec time_delta; /* server time granularity */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | __u32 lease_time; /* in seconds */ |
Andy Adamson | 504913f | 2010-10-20 00:17:57 -0400 | [diff] [blame] | 117 | __u32 layouttype; /* supported pnfs layout driver */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | }; |
| 119 | |
| 120 | struct nfs_fsstat { |
| 121 | struct nfs_fattr *fattr; /* Post-op attributes */ |
| 122 | __u64 tbytes; /* total size in bytes */ |
| 123 | __u64 fbytes; /* # of free bytes */ |
| 124 | __u64 abytes; /* # of bytes available to user */ |
| 125 | __u64 tfiles; /* # of files */ |
| 126 | __u64 ffiles; /* # of free files */ |
| 127 | __u64 afiles; /* # of files available to user */ |
| 128 | }; |
| 129 | |
| 130 | struct nfs2_fsstat { |
| 131 | __u32 tsize; /* Server transfer size */ |
| 132 | __u32 bsize; /* Filesystem block size */ |
| 133 | __u32 blocks; /* No. of "bsize" blocks on filesystem */ |
| 134 | __u32 bfree; /* No. of free "bsize" blocks */ |
| 135 | __u32 bavail; /* No. of available "bsize" blocks */ |
| 136 | }; |
| 137 | |
| 138 | struct nfs_pathconf { |
| 139 | struct nfs_fattr *fattr; /* Post-op attributes */ |
| 140 | __u32 max_link; /* max # of hard links */ |
| 141 | __u32 max_namelen; /* max name length */ |
| 142 | }; |
| 143 | |
| 144 | struct nfs4_change_info { |
| 145 | u32 atomic; |
| 146 | u64 before; |
| 147 | u64 after; |
| 148 | }; |
| 149 | |
Trond Myklebust | cee54fc | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 150 | struct nfs_seqid; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 151 | |
Andy Adamson | 557134a | 2009-04-01 09:21:53 -0400 | [diff] [blame] | 152 | /* nfs41 sessions channel attributes */ |
| 153 | struct nfs4_channel_attrs { |
| 154 | u32 headerpadsz; |
| 155 | u32 max_rqst_sz; |
| 156 | u32 max_resp_sz; |
| 157 | u32 max_resp_sz_cached; |
| 158 | u32 max_ops; |
| 159 | u32 max_reqs; |
| 160 | }; |
| 161 | |
| 162 | /* nfs41 sessions slot seqid */ |
| 163 | struct nfs4_slot { |
| 164 | u32 seq_nr; |
| 165 | }; |
| 166 | |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 167 | struct nfs4_sequence_args { |
Benny Halevy | f375297 | 2009-04-01 09:22:04 -0400 | [diff] [blame] | 168 | struct nfs4_session *sa_session; |
Andy Adamson | fbcd4ab | 2009-04-01 09:22:15 -0400 | [diff] [blame] | 169 | u8 sa_slotid; |
| 170 | u8 sa_cache_this; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 171 | }; |
| 172 | |
| 173 | struct nfs4_sequence_res { |
Benny Halevy | f375297 | 2009-04-01 09:22:04 -0400 | [diff] [blame] | 174 | struct nfs4_session *sr_session; |
Benny Halevy | dfb4f309 | 2010-09-24 09:17:01 -0400 | [diff] [blame] | 175 | struct nfs4_slot *sr_slot; /* slot used to send request */ |
Andy Adamson | fbcd4ab | 2009-04-01 09:22:15 -0400 | [diff] [blame] | 176 | int sr_status; /* sequence operation status */ |
Richard Kennedy | a01878a | 2009-12-03 15:58:56 -0500 | [diff] [blame] | 177 | unsigned long sr_renewal_time; |
Alexandros Batsakis | 0629e37 | 2009-12-05 13:46:14 -0500 | [diff] [blame] | 178 | u32 sr_status_flags; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 179 | }; |
| 180 | |
Andy Adamson | 2050f0c | 2009-04-01 09:22:30 -0400 | [diff] [blame] | 181 | struct nfs4_get_lease_time_args { |
| 182 | struct nfs4_sequence_args la_seq_args; |
| 183 | }; |
| 184 | |
| 185 | struct nfs4_get_lease_time_res { |
| 186 | struct nfs_fsinfo *lr_fsinfo; |
| 187 | struct nfs4_sequence_res lr_seq_res; |
| 188 | }; |
| 189 | |
Andy Adamson | b1f69b7 | 2010-10-20 00:18:03 -0400 | [diff] [blame] | 190 | #define PNFS_LAYOUT_MAXSIZE 4096 |
| 191 | |
| 192 | struct nfs4_layoutdriver_data { |
| 193 | __u32 len; |
| 194 | void *buf; |
| 195 | }; |
| 196 | |
| 197 | struct pnfs_layout_range { |
| 198 | u32 iomode; |
| 199 | u64 offset; |
| 200 | u64 length; |
| 201 | }; |
| 202 | |
| 203 | struct nfs4_layoutget_args { |
| 204 | __u32 type; |
| 205 | struct pnfs_layout_range range; |
| 206 | __u64 minlength; |
| 207 | __u32 maxcount; |
| 208 | struct inode *inode; |
| 209 | struct nfs_open_context *ctx; |
| 210 | struct nfs4_sequence_args seq_args; |
Fred Isaman | cf7d63f | 2011-01-06 11:36:25 +0000 | [diff] [blame] | 211 | nfs4_stateid stateid; |
Andy Adamson | b1f69b7 | 2010-10-20 00:18:03 -0400 | [diff] [blame] | 212 | }; |
| 213 | |
| 214 | struct nfs4_layoutget_res { |
| 215 | __u32 return_on_close; |
| 216 | struct pnfs_layout_range range; |
| 217 | __u32 type; |
| 218 | nfs4_stateid stateid; |
| 219 | struct nfs4_layoutdriver_data layout; |
| 220 | struct nfs4_sequence_res seq_res; |
| 221 | }; |
| 222 | |
| 223 | struct nfs4_layoutget { |
| 224 | struct nfs4_layoutget_args args; |
| 225 | struct nfs4_layoutget_res res; |
| 226 | struct pnfs_layout_segment **lsegpp; |
Andy Adamson | b1f69b7 | 2010-10-20 00:18:03 -0400 | [diff] [blame] | 227 | }; |
| 228 | |
| 229 | struct nfs4_getdeviceinfo_args { |
| 230 | struct pnfs_device *pdev; |
| 231 | struct nfs4_sequence_args seq_args; |
| 232 | }; |
| 233 | |
| 234 | struct nfs4_getdeviceinfo_res { |
| 235 | struct pnfs_device *pdev; |
| 236 | struct nfs4_sequence_res seq_res; |
| 237 | }; |
| 238 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | /* |
| 240 | * Arguments to the open call. |
| 241 | */ |
| 242 | struct nfs_openargs { |
| 243 | const struct nfs_fh * fh; |
Trond Myklebust | cee54fc | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 244 | struct nfs_seqid * seqid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | int open_flags; |
Trond Myklebust | dc0b027 | 2008-12-23 15:21:56 -0500 | [diff] [blame] | 246 | fmode_t fmode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | __u64 clientid; |
Trond Myklebust | 9f958ab | 2007-07-02 13:58:33 -0400 | [diff] [blame] | 248 | __u64 id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | union { |
Trond Myklebust | d77d76f | 2010-06-16 09:52:27 -0400 | [diff] [blame] | 250 | struct { |
| 251 | struct iattr * attrs; /* UNCHECKED, GUARDED */ |
| 252 | nfs4_verifier verifier; /* EXCLUSIVE */ |
| 253 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | nfs4_stateid delegation; /* CLAIM_DELEGATE_CUR */ |
Trond Myklebust | bd7bf9d | 2008-12-23 15:21:53 -0500 | [diff] [blame] | 255 | fmode_t delegation_type; /* CLAIM_PREVIOUS */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | } u; |
| 257 | const struct qstr * name; |
| 258 | const struct nfs_server *server; /* Needed for ID mapping */ |
| 259 | const u32 * bitmask; |
| 260 | __u32 claim; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 261 | struct nfs4_sequence_args seq_args; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | }; |
| 263 | |
| 264 | struct nfs_openres { |
| 265 | nfs4_stateid stateid; |
| 266 | struct nfs_fh fh; |
| 267 | struct nfs4_change_info cinfo; |
| 268 | __u32 rflags; |
| 269 | struct nfs_fattr * f_attr; |
Trond Myklebust | 56ae19f | 2005-10-27 22:12:40 -0400 | [diff] [blame] | 270 | struct nfs_fattr * dir_attr; |
Trond Myklebust | c1d5193 | 2008-04-07 13:20:54 -0400 | [diff] [blame] | 271 | struct nfs_seqid * seqid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | const struct nfs_server *server; |
Trond Myklebust | bd7bf9d | 2008-12-23 15:21:53 -0500 | [diff] [blame] | 273 | fmode_t delegation_type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | nfs4_stateid delegation; |
| 275 | __u32 do_recall; |
| 276 | __u64 maxsize; |
Jeff Layton | aa53ed5 | 2007-06-05 14:49:03 -0400 | [diff] [blame] | 277 | __u32 attrset[NFS4_BITMAP_SIZE]; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 278 | struct nfs4_sequence_res seq_res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | }; |
| 280 | |
| 281 | /* |
| 282 | * Arguments to the open_confirm call. |
| 283 | */ |
| 284 | struct nfs_open_confirmargs { |
| 285 | const struct nfs_fh * fh; |
Trond Myklebust | cdd4e68 | 2006-01-03 09:55:12 +0100 | [diff] [blame] | 286 | nfs4_stateid * stateid; |
Trond Myklebust | cee54fc | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 287 | struct nfs_seqid * seqid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | }; |
| 289 | |
| 290 | struct nfs_open_confirmres { |
| 291 | nfs4_stateid stateid; |
Trond Myklebust | c1d5193 | 2008-04-07 13:20:54 -0400 | [diff] [blame] | 292 | struct nfs_seqid * seqid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | }; |
| 294 | |
| 295 | /* |
| 296 | * Arguments to the close call. |
| 297 | */ |
| 298 | struct nfs_closeargs { |
| 299 | struct nfs_fh * fh; |
Trond Myklebust | 9512135 | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 300 | nfs4_stateid * stateid; |
Trond Myklebust | cee54fc | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 301 | struct nfs_seqid * seqid; |
Trond Myklebust | dc0b027 | 2008-12-23 15:21:56 -0500 | [diff] [blame] | 302 | fmode_t fmode; |
Trond Myklebust | 516a6af | 2005-10-27 22:12:41 -0400 | [diff] [blame] | 303 | const u32 * bitmask; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 304 | struct nfs4_sequence_args seq_args; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | }; |
| 306 | |
| 307 | struct nfs_closeres { |
| 308 | nfs4_stateid stateid; |
Trond Myklebust | 516a6af | 2005-10-27 22:12:41 -0400 | [diff] [blame] | 309 | struct nfs_fattr * fattr; |
Trond Myklebust | c1d5193 | 2008-04-07 13:20:54 -0400 | [diff] [blame] | 310 | struct nfs_seqid * seqid; |
Trond Myklebust | 516a6af | 2005-10-27 22:12:41 -0400 | [diff] [blame] | 311 | const struct nfs_server *server; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 312 | struct nfs4_sequence_res seq_res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | }; |
| 314 | /* |
| 315 | * * Arguments to the lock,lockt, and locku call. |
| 316 | * */ |
| 317 | struct nfs_lowner { |
Trond Myklebust | 911d1aa | 2006-01-03 09:55:16 +0100 | [diff] [blame] | 318 | __u64 clientid; |
Trond Myklebust | 9f958ab | 2007-07-02 13:58:33 -0400 | [diff] [blame] | 319 | __u64 id; |
Trond Myklebust | d035c36 | 2010-12-21 10:45:27 -0500 | [diff] [blame] | 320 | dev_t s_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | }; |
| 322 | |
Trond Myklebust | 911d1aa | 2006-01-03 09:55:16 +0100 | [diff] [blame] | 323 | struct nfs_lock_args { |
| 324 | struct nfs_fh * fh; |
| 325 | struct file_lock * fl; |
Trond Myklebust | 06735b3 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 326 | struct nfs_seqid * lock_seqid; |
| 327 | nfs4_stateid * lock_stateid; |
| 328 | struct nfs_seqid * open_seqid; |
| 329 | nfs4_stateid * open_stateid; |
Trond Myklebust | 911d1aa | 2006-01-03 09:55:16 +0100 | [diff] [blame] | 330 | struct nfs_lowner lock_owner; |
| 331 | unsigned char block : 1; |
| 332 | unsigned char reclaim : 1; |
| 333 | unsigned char new_lock_owner : 1; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 334 | struct nfs4_sequence_args seq_args; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | }; |
| 336 | |
Trond Myklebust | 911d1aa | 2006-01-03 09:55:16 +0100 | [diff] [blame] | 337 | struct nfs_lock_res { |
Trond Myklebust | c1d5193 | 2008-04-07 13:20:54 -0400 | [diff] [blame] | 338 | nfs4_stateid stateid; |
| 339 | struct nfs_seqid * lock_seqid; |
| 340 | struct nfs_seqid * open_seqid; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 341 | struct nfs4_sequence_res seq_res; |
Trond Myklebust | 911d1aa | 2006-01-03 09:55:16 +0100 | [diff] [blame] | 342 | }; |
| 343 | |
| 344 | struct nfs_locku_args { |
| 345 | struct nfs_fh * fh; |
| 346 | struct file_lock * fl; |
Trond Myklebust | cee54fc | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 347 | struct nfs_seqid * seqid; |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 348 | nfs4_stateid * stateid; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 349 | struct nfs4_sequence_args seq_args; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | }; |
| 351 | |
Trond Myklebust | 911d1aa | 2006-01-03 09:55:16 +0100 | [diff] [blame] | 352 | struct nfs_locku_res { |
Trond Myklebust | c1d5193 | 2008-04-07 13:20:54 -0400 | [diff] [blame] | 353 | nfs4_stateid stateid; |
| 354 | struct nfs_seqid * seqid; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 355 | struct nfs4_sequence_res seq_res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | }; |
| 357 | |
Trond Myklebust | 911d1aa | 2006-01-03 09:55:16 +0100 | [diff] [blame] | 358 | struct nfs_lockt_args { |
| 359 | struct nfs_fh * fh; |
| 360 | struct file_lock * fl; |
| 361 | struct nfs_lowner lock_owner; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 362 | struct nfs4_sequence_args seq_args; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | }; |
| 364 | |
Trond Myklebust | 911d1aa | 2006-01-03 09:55:16 +0100 | [diff] [blame] | 365 | struct nfs_lockt_res { |
| 366 | struct file_lock * denied; /* LOCK, LOCKT failed */ |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 367 | struct nfs4_sequence_res seq_res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | }; |
| 369 | |
Trond Myklebust | d3c7b7c | 2010-07-01 12:49:01 -0400 | [diff] [blame] | 370 | struct nfs_release_lockowner_args { |
| 371 | struct nfs_lowner lock_owner; |
| 372 | }; |
| 373 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | struct nfs4_delegreturnargs { |
| 375 | const struct nfs_fh *fhandle; |
| 376 | const nfs4_stateid *stateid; |
Trond Myklebust | fa178f2 | 2006-01-03 09:55:38 +0100 | [diff] [blame] | 377 | const u32 * bitmask; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 378 | struct nfs4_sequence_args seq_args; |
Trond Myklebust | fa178f2 | 2006-01-03 09:55:38 +0100 | [diff] [blame] | 379 | }; |
| 380 | |
| 381 | struct nfs4_delegreturnres { |
| 382 | struct nfs_fattr * fattr; |
| 383 | const struct nfs_server *server; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 384 | struct nfs4_sequence_res seq_res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | }; |
| 386 | |
| 387 | /* |
| 388 | * Arguments to the read call. |
| 389 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | struct nfs_readargs { |
| 391 | struct nfs_fh * fh; |
| 392 | struct nfs_open_context *context; |
Trond Myklebust | f11ac8d | 2010-06-25 16:35:53 -0400 | [diff] [blame] | 393 | struct nfs_lock_context *lock_context; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | __u64 offset; |
| 395 | __u32 count; |
| 396 | unsigned int pgbase; |
| 397 | struct page ** pages; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 398 | struct nfs4_sequence_args seq_args; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | }; |
| 400 | |
| 401 | struct nfs_readres { |
| 402 | struct nfs_fattr * fattr; |
| 403 | __u32 count; |
| 404 | int eof; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 405 | struct nfs4_sequence_res seq_res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | }; |
| 407 | |
| 408 | /* |
| 409 | * Arguments to the write call. |
| 410 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | struct nfs_writeargs { |
| 412 | struct nfs_fh * fh; |
| 413 | struct nfs_open_context *context; |
Trond Myklebust | f11ac8d | 2010-06-25 16:35:53 -0400 | [diff] [blame] | 414 | struct nfs_lock_context *lock_context; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | __u64 offset; |
| 416 | __u32 count; |
| 417 | enum nfs3_stable_how stable; |
| 418 | unsigned int pgbase; |
| 419 | struct page ** pages; |
Trond Myklebust | 4f9838c | 2005-10-27 22:12:44 -0400 | [diff] [blame] | 420 | const u32 * bitmask; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 421 | struct nfs4_sequence_args seq_args; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | }; |
| 423 | |
| 424 | struct nfs_writeverf { |
| 425 | enum nfs3_stable_how committed; |
Al Viro | bc4785c | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 426 | __be32 verifier[2]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | }; |
| 428 | |
| 429 | struct nfs_writeres { |
| 430 | struct nfs_fattr * fattr; |
| 431 | struct nfs_writeverf * verf; |
| 432 | __u32 count; |
Trond Myklebust | 4f9838c | 2005-10-27 22:12:44 -0400 | [diff] [blame] | 433 | const struct nfs_server *server; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 434 | struct nfs4_sequence_res seq_res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | }; |
| 436 | |
| 437 | /* |
Trond Myklebust | 4fdc17b | 2007-07-14 15:39:57 -0400 | [diff] [blame] | 438 | * Common arguments to the unlink call |
| 439 | */ |
| 440 | struct nfs_removeargs { |
| 441 | const struct nfs_fh *fh; |
| 442 | struct qstr name; |
| 443 | const u32 * bitmask; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 444 | struct nfs4_sequence_args seq_args; |
Trond Myklebust | 4fdc17b | 2007-07-14 15:39:57 -0400 | [diff] [blame] | 445 | }; |
| 446 | |
| 447 | struct nfs_removeres { |
| 448 | const struct nfs_server *server; |
Trond Myklebust | d346890 | 2010-04-16 16:22:50 -0400 | [diff] [blame] | 449 | struct nfs_fattr *dir_attr; |
Trond Myklebust | 4fdc17b | 2007-07-14 15:39:57 -0400 | [diff] [blame] | 450 | struct nfs4_change_info cinfo; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 451 | struct nfs4_sequence_res seq_res; |
Trond Myklebust | 4fdc17b | 2007-07-14 15:39:57 -0400 | [diff] [blame] | 452 | }; |
| 453 | |
| 454 | /* |
Jeff Layton | 920769f | 2010-09-17 17:30:25 -0400 | [diff] [blame] | 455 | * Common arguments to the rename call |
| 456 | */ |
| 457 | struct nfs_renameargs { |
| 458 | const struct nfs_fh *old_dir; |
| 459 | const struct nfs_fh *new_dir; |
| 460 | const struct qstr *old_name; |
| 461 | const struct qstr *new_name; |
| 462 | const u32 *bitmask; |
| 463 | struct nfs4_sequence_args seq_args; |
| 464 | }; |
| 465 | |
Jeff Layton | e8582a8 | 2010-09-17 17:31:06 -0400 | [diff] [blame] | 466 | struct nfs_renameres { |
| 467 | const struct nfs_server *server; |
| 468 | struct nfs4_change_info old_cinfo; |
| 469 | struct nfs_fattr *old_fattr; |
| 470 | struct nfs4_change_info new_cinfo; |
| 471 | struct nfs_fattr *new_fattr; |
| 472 | struct nfs4_sequence_res seq_res; |
| 473 | }; |
| 474 | |
Jeff Layton | 920769f | 2010-09-17 17:30:25 -0400 | [diff] [blame] | 475 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | * Argument struct for decode_entry function |
| 477 | */ |
| 478 | struct nfs_entry { |
| 479 | __u64 ino; |
| 480 | __u64 cookie, |
| 481 | prev_cookie; |
| 482 | const char * name; |
| 483 | unsigned int len; |
| 484 | int eof; |
| 485 | struct nfs_fh * fh; |
| 486 | struct nfs_fattr * fattr; |
Trond Myklebust | 0b26a0b | 2010-11-20 14:26:44 -0500 | [diff] [blame] | 487 | unsigned char d_type; |
Chuck Lever | 573c4e1 | 2010-12-14 14:58:11 +0000 | [diff] [blame] | 488 | struct nfs_server * server; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | }; |
| 490 | |
| 491 | /* |
| 492 | * The following types are for NFSv2 only. |
| 493 | */ |
| 494 | struct nfs_sattrargs { |
| 495 | struct nfs_fh * fh; |
| 496 | struct iattr * sattr; |
| 497 | }; |
| 498 | |
| 499 | struct nfs_diropargs { |
| 500 | struct nfs_fh * fh; |
| 501 | const char * name; |
| 502 | unsigned int len; |
| 503 | }; |
| 504 | |
| 505 | struct nfs_createargs { |
| 506 | struct nfs_fh * fh; |
| 507 | const char * name; |
| 508 | unsigned int len; |
| 509 | struct iattr * sattr; |
| 510 | }; |
| 511 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | struct nfs_setattrargs { |
| 513 | struct nfs_fh * fh; |
| 514 | nfs4_stateid stateid; |
| 515 | struct iattr * iap; |
| 516 | const struct nfs_server * server; /* Needed for name mapping */ |
| 517 | const u32 * bitmask; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 518 | struct nfs4_sequence_args seq_args; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | }; |
| 520 | |
J. Bruce Fields | 23ec696 | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 521 | struct nfs_setaclargs { |
| 522 | struct nfs_fh * fh; |
| 523 | size_t acl_len; |
| 524 | unsigned int acl_pgbase; |
| 525 | struct page ** acl_pages; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 526 | struct nfs4_sequence_args seq_args; |
J. Bruce Fields | 23ec696 | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 527 | }; |
| 528 | |
Benny Halevy | 73c403a | 2009-04-01 09:22:01 -0400 | [diff] [blame] | 529 | struct nfs_setaclres { |
| 530 | struct nfs4_sequence_res seq_res; |
| 531 | }; |
| 532 | |
J. Bruce Fields | 029d105 | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 533 | struct nfs_getaclargs { |
| 534 | struct nfs_fh * fh; |
| 535 | size_t acl_len; |
| 536 | unsigned int acl_pgbase; |
| 537 | struct page ** acl_pages; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 538 | struct nfs4_sequence_args seq_args; |
J. Bruce Fields | 029d105 | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 539 | }; |
| 540 | |
Benny Halevy | 663c79b | 2009-04-01 09:21:59 -0400 | [diff] [blame] | 541 | struct nfs_getaclres { |
| 542 | size_t acl_len; |
| 543 | struct nfs4_sequence_res seq_res; |
| 544 | }; |
| 545 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | struct nfs_setattrres { |
| 547 | struct nfs_fattr * fattr; |
| 548 | const struct nfs_server * server; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 549 | struct nfs4_sequence_res seq_res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | }; |
| 551 | |
| 552 | struct nfs_linkargs { |
| 553 | struct nfs_fh * fromfh; |
| 554 | struct nfs_fh * tofh; |
| 555 | const char * toname; |
| 556 | unsigned int tolen; |
| 557 | }; |
| 558 | |
| 559 | struct nfs_symlinkargs { |
| 560 | struct nfs_fh * fromfh; |
| 561 | const char * fromname; |
| 562 | unsigned int fromlen; |
Chuck Lever | 94a6d75 | 2006-08-22 20:06:23 -0400 | [diff] [blame] | 563 | struct page ** pages; |
| 564 | unsigned int pathlen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | struct iattr * sattr; |
| 566 | }; |
| 567 | |
| 568 | struct nfs_readdirargs { |
| 569 | struct nfs_fh * fh; |
| 570 | __u32 cookie; |
| 571 | unsigned int count; |
| 572 | struct page ** pages; |
| 573 | }; |
| 574 | |
Andreas Gruenbacher | b7fa055 | 2005-06-22 17:16:27 +0000 | [diff] [blame] | 575 | struct nfs3_getaclargs { |
| 576 | struct nfs_fh * fh; |
| 577 | int mask; |
| 578 | struct page ** pages; |
| 579 | }; |
| 580 | |
| 581 | struct nfs3_setaclargs { |
| 582 | struct inode * inode; |
| 583 | int mask; |
| 584 | struct posix_acl * acl_access; |
| 585 | struct posix_acl * acl_default; |
Trond Myklebust | ae46141f | 2009-03-10 20:33:18 -0400 | [diff] [blame] | 586 | size_t len; |
| 587 | unsigned int npages; |
Andreas Gruenbacher | b7fa055 | 2005-06-22 17:16:27 +0000 | [diff] [blame] | 588 | struct page ** pages; |
| 589 | }; |
| 590 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | struct nfs_diropok { |
| 592 | struct nfs_fh * fh; |
| 593 | struct nfs_fattr * fattr; |
| 594 | }; |
| 595 | |
| 596 | struct nfs_readlinkargs { |
| 597 | struct nfs_fh * fh; |
| 598 | unsigned int pgbase; |
| 599 | unsigned int pglen; |
| 600 | struct page ** pages; |
| 601 | }; |
| 602 | |
| 603 | struct nfs3_sattrargs { |
| 604 | struct nfs_fh * fh; |
| 605 | struct iattr * sattr; |
| 606 | unsigned int guard; |
| 607 | struct timespec guardtime; |
| 608 | }; |
| 609 | |
| 610 | struct nfs3_diropargs { |
| 611 | struct nfs_fh * fh; |
| 612 | const char * name; |
| 613 | unsigned int len; |
| 614 | }; |
| 615 | |
| 616 | struct nfs3_accessargs { |
| 617 | struct nfs_fh * fh; |
| 618 | __u32 access; |
| 619 | }; |
| 620 | |
| 621 | struct nfs3_createargs { |
| 622 | struct nfs_fh * fh; |
| 623 | const char * name; |
| 624 | unsigned int len; |
| 625 | struct iattr * sattr; |
| 626 | enum nfs3_createmode createmode; |
Al Viro | bc4785c | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 627 | __be32 verifier[2]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | }; |
| 629 | |
| 630 | struct nfs3_mkdirargs { |
| 631 | struct nfs_fh * fh; |
| 632 | const char * name; |
| 633 | unsigned int len; |
| 634 | struct iattr * sattr; |
| 635 | }; |
| 636 | |
| 637 | struct nfs3_symlinkargs { |
| 638 | struct nfs_fh * fromfh; |
| 639 | const char * fromname; |
| 640 | unsigned int fromlen; |
Chuck Lever | 94a6d75 | 2006-08-22 20:06:23 -0400 | [diff] [blame] | 641 | struct page ** pages; |
| 642 | unsigned int pathlen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | struct iattr * sattr; |
| 644 | }; |
| 645 | |
| 646 | struct nfs3_mknodargs { |
| 647 | struct nfs_fh * fh; |
| 648 | const char * name; |
| 649 | unsigned int len; |
| 650 | enum nfs3_ftype type; |
| 651 | struct iattr * sattr; |
| 652 | dev_t rdev; |
| 653 | }; |
| 654 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | struct nfs3_linkargs { |
| 656 | struct nfs_fh * fromfh; |
| 657 | struct nfs_fh * tofh; |
| 658 | const char * toname; |
| 659 | unsigned int tolen; |
| 660 | }; |
| 661 | |
| 662 | struct nfs3_readdirargs { |
| 663 | struct nfs_fh * fh; |
| 664 | __u64 cookie; |
Al Viro | bc4785c | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 665 | __be32 verf[2]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | int plus; |
| 667 | unsigned int count; |
| 668 | struct page ** pages; |
| 669 | }; |
| 670 | |
| 671 | struct nfs3_diropres { |
| 672 | struct nfs_fattr * dir_attr; |
| 673 | struct nfs_fh * fh; |
| 674 | struct nfs_fattr * fattr; |
| 675 | }; |
| 676 | |
| 677 | struct nfs3_accessres { |
| 678 | struct nfs_fattr * fattr; |
| 679 | __u32 access; |
| 680 | }; |
| 681 | |
| 682 | struct nfs3_readlinkargs { |
| 683 | struct nfs_fh * fh; |
| 684 | unsigned int pgbase; |
| 685 | unsigned int pglen; |
| 686 | struct page ** pages; |
| 687 | }; |
| 688 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | struct nfs3_linkres { |
| 690 | struct nfs_fattr * dir_attr; |
| 691 | struct nfs_fattr * fattr; |
| 692 | }; |
| 693 | |
| 694 | struct nfs3_readdirres { |
| 695 | struct nfs_fattr * dir_attr; |
Al Viro | bc4785c | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 696 | __be32 * verf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | int plus; |
| 698 | }; |
| 699 | |
Andreas Gruenbacher | b7fa055 | 2005-06-22 17:16:27 +0000 | [diff] [blame] | 700 | struct nfs3_getaclres { |
| 701 | struct nfs_fattr * fattr; |
| 702 | int mask; |
| 703 | unsigned int acl_access_count; |
| 704 | unsigned int acl_default_count; |
| 705 | struct posix_acl * acl_access; |
| 706 | struct posix_acl * acl_default; |
| 707 | }; |
| 708 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | #ifdef CONFIG_NFS_V4 |
| 710 | |
| 711 | typedef u64 clientid4; |
| 712 | |
| 713 | struct nfs4_accessargs { |
| 714 | const struct nfs_fh * fh; |
Trond Myklebust | 76b3299 | 2007-08-10 17:45:11 -0400 | [diff] [blame] | 715 | const u32 * bitmask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | u32 access; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 717 | struct nfs4_sequence_args seq_args; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | }; |
| 719 | |
| 720 | struct nfs4_accessres { |
Trond Myklebust | 76b3299 | 2007-08-10 17:45:11 -0400 | [diff] [blame] | 721 | const struct nfs_server * server; |
| 722 | struct nfs_fattr * fattr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | u32 supported; |
| 724 | u32 access; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 725 | struct nfs4_sequence_res seq_res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | }; |
| 727 | |
| 728 | struct nfs4_create_arg { |
| 729 | u32 ftype; |
| 730 | union { |
Chuck Lever | 94a6d75 | 2006-08-22 20:06:23 -0400 | [diff] [blame] | 731 | struct { |
| 732 | struct page ** pages; |
| 733 | unsigned int len; |
| 734 | } symlink; /* NF4LNK */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | struct { |
| 736 | u32 specdata1; |
| 737 | u32 specdata2; |
| 738 | } device; /* NF4BLK, NF4CHR */ |
| 739 | } u; |
| 740 | const struct qstr * name; |
| 741 | const struct nfs_server * server; |
| 742 | const struct iattr * attrs; |
| 743 | const struct nfs_fh * dir_fh; |
| 744 | const u32 * bitmask; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 745 | struct nfs4_sequence_args seq_args; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 | }; |
| 747 | |
| 748 | struct nfs4_create_res { |
| 749 | const struct nfs_server * server; |
| 750 | struct nfs_fh * fh; |
| 751 | struct nfs_fattr * fattr; |
| 752 | struct nfs4_change_info dir_cinfo; |
Trond Myklebust | 56ae19f | 2005-10-27 22:12:40 -0400 | [diff] [blame] | 753 | struct nfs_fattr * dir_fattr; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 754 | struct nfs4_sequence_res seq_res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 755 | }; |
| 756 | |
| 757 | struct nfs4_fsinfo_arg { |
| 758 | const struct nfs_fh * fh; |
| 759 | const u32 * bitmask; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 760 | struct nfs4_sequence_args seq_args; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | }; |
| 762 | |
Benny Halevy | 3dda5e4 | 2009-04-01 09:21:57 -0400 | [diff] [blame] | 763 | struct nfs4_fsinfo_res { |
| 764 | struct nfs_fsinfo *fsinfo; |
| 765 | struct nfs4_sequence_res seq_res; |
| 766 | }; |
| 767 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | struct nfs4_getattr_arg { |
| 769 | const struct nfs_fh * fh; |
| 770 | const u32 * bitmask; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 771 | struct nfs4_sequence_args seq_args; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | }; |
| 773 | |
| 774 | struct nfs4_getattr_res { |
| 775 | const struct nfs_server * server; |
| 776 | struct nfs_fattr * fattr; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 777 | struct nfs4_sequence_res seq_res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | }; |
| 779 | |
| 780 | struct nfs4_link_arg { |
| 781 | const struct nfs_fh * fh; |
| 782 | const struct nfs_fh * dir_fh; |
| 783 | const struct qstr * name; |
Trond Myklebust | 91ba2ee | 2005-10-27 22:12:42 -0400 | [diff] [blame] | 784 | const u32 * bitmask; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 785 | struct nfs4_sequence_args seq_args; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | }; |
| 787 | |
Trond Myklebust | 91ba2ee | 2005-10-27 22:12:42 -0400 | [diff] [blame] | 788 | struct nfs4_link_res { |
| 789 | const struct nfs_server * server; |
| 790 | struct nfs_fattr * fattr; |
| 791 | struct nfs4_change_info cinfo; |
| 792 | struct nfs_fattr * dir_attr; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 793 | struct nfs4_sequence_res seq_res; |
Trond Myklebust | 91ba2ee | 2005-10-27 22:12:42 -0400 | [diff] [blame] | 794 | }; |
| 795 | |
| 796 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | struct nfs4_lookup_arg { |
| 798 | const struct nfs_fh * dir_fh; |
| 799 | const struct qstr * name; |
| 800 | const u32 * bitmask; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 801 | struct nfs4_sequence_args seq_args; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | }; |
| 803 | |
| 804 | struct nfs4_lookup_res { |
| 805 | const struct nfs_server * server; |
| 806 | struct nfs_fattr * fattr; |
| 807 | struct nfs_fh * fh; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 808 | struct nfs4_sequence_res seq_res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | }; |
| 810 | |
| 811 | struct nfs4_lookup_root_arg { |
| 812 | const u32 * bitmask; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 813 | struct nfs4_sequence_args seq_args; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | }; |
| 815 | |
| 816 | struct nfs4_pathconf_arg { |
| 817 | const struct nfs_fh * fh; |
| 818 | const u32 * bitmask; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 819 | struct nfs4_sequence_args seq_args; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 820 | }; |
| 821 | |
Benny Halevy | d45b298 | 2009-04-01 09:21:58 -0400 | [diff] [blame] | 822 | struct nfs4_pathconf_res { |
| 823 | struct nfs_pathconf *pathconf; |
| 824 | struct nfs4_sequence_res seq_res; |
| 825 | }; |
| 826 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 | struct nfs4_readdir_arg { |
| 828 | const struct nfs_fh * fh; |
| 829 | u64 cookie; |
| 830 | nfs4_verifier verifier; |
| 831 | u32 count; |
| 832 | struct page ** pages; /* zero-copy data */ |
| 833 | unsigned int pgbase; /* zero-copy data */ |
| 834 | const u32 * bitmask; |
Bryan Schumaker | 82f2e54 | 2010-10-21 16:33:18 -0400 | [diff] [blame] | 835 | int plus; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 836 | struct nfs4_sequence_args seq_args; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | }; |
| 838 | |
| 839 | struct nfs4_readdir_res { |
| 840 | nfs4_verifier verifier; |
| 841 | unsigned int pgbase; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 842 | struct nfs4_sequence_res seq_res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 843 | }; |
| 844 | |
| 845 | struct nfs4_readlink { |
| 846 | const struct nfs_fh * fh; |
| 847 | unsigned int pgbase; |
| 848 | unsigned int pglen; /* zero-copy data */ |
| 849 | struct page ** pages; /* zero-copy data */ |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 850 | struct nfs4_sequence_args seq_args; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | }; |
| 852 | |
Benny Halevy | f50c700 | 2009-04-01 09:21:55 -0400 | [diff] [blame] | 853 | struct nfs4_readlink_res { |
| 854 | struct nfs4_sequence_res seq_res; |
| 855 | }; |
| 856 | |
Trond Myklebust | 19d771f | 2008-10-08 13:54:52 -0400 | [diff] [blame] | 857 | #define NFS4_SETCLIENTID_NAMELEN (127) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | struct nfs4_setclientid { |
Chuck Lever | cc38bac | 2007-12-10 14:56:54 -0500 | [diff] [blame] | 859 | const nfs4_verifier * sc_verifier; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | unsigned int sc_name_len; |
Chuck Lever | d1ce02e | 2008-09-25 11:57:12 -0400 | [diff] [blame] | 861 | char sc_name[NFS4_SETCLIENTID_NAMELEN + 1]; |
Chuck Lever | cc38bac | 2007-12-10 14:56:54 -0500 | [diff] [blame] | 862 | u32 sc_prog; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | unsigned int sc_netid_len; |
Chuck Lever | d1ce02e | 2008-09-25 11:57:12 -0400 | [diff] [blame] | 864 | char sc_netid[RPCBIND_MAXNETIDLEN + 1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | unsigned int sc_uaddr_len; |
Chuck Lever | d1ce02e | 2008-09-25 11:57:12 -0400 | [diff] [blame] | 866 | char sc_uaddr[RPCBIND_MAXUADDRLEN + 1]; |
Chuck Lever | cc38bac | 2007-12-10 14:56:54 -0500 | [diff] [blame] | 867 | u32 sc_cb_ident; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | }; |
| 869 | |
Trond Myklebust | bb8b27e | 2010-04-16 16:43:06 -0400 | [diff] [blame] | 870 | struct nfs4_setclientid_res { |
| 871 | u64 clientid; |
| 872 | nfs4_verifier confirm; |
| 873 | }; |
| 874 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | struct nfs4_statfs_arg { |
| 876 | const struct nfs_fh * fh; |
| 877 | const u32 * bitmask; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 878 | struct nfs4_sequence_args seq_args; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | }; |
| 880 | |
Benny Halevy | 24ad148 | 2009-04-01 09:21:56 -0400 | [diff] [blame] | 881 | struct nfs4_statfs_res { |
| 882 | struct nfs_fsstat *fsstat; |
| 883 | struct nfs4_sequence_res seq_res; |
| 884 | }; |
| 885 | |
Benny Halevy | 43652ad | 2009-04-01 09:21:54 -0400 | [diff] [blame] | 886 | struct nfs4_server_caps_arg { |
| 887 | struct nfs_fh *fhandle; |
| 888 | struct nfs4_sequence_args seq_args; |
| 889 | }; |
| 890 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | struct nfs4_server_caps_res { |
| 892 | u32 attr_bitmask[2]; |
| 893 | u32 acl_bitmask; |
| 894 | u32 has_links; |
| 895 | u32 has_symlinks; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 896 | struct nfs4_sequence_res seq_res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 897 | }; |
| 898 | |
Manoj Naik | 7aaa0b3 | 2006-06-09 09:34:23 -0400 | [diff] [blame] | 899 | struct nfs4_string { |
| 900 | unsigned int len; |
| 901 | char *data; |
Trond Myklebust | 683b57b | 2006-06-09 09:34:22 -0400 | [diff] [blame] | 902 | }; |
| 903 | |
Manoj Naik | 7aaa0b3 | 2006-06-09 09:34:23 -0400 | [diff] [blame] | 904 | #define NFS4_PATHNAME_MAXCOMPONENTS 512 |
| 905 | struct nfs4_pathname { |
| 906 | unsigned int ncomponents; |
| 907 | struct nfs4_string components[NFS4_PATHNAME_MAXCOMPONENTS]; |
| 908 | }; |
| 909 | |
| 910 | #define NFS4_FS_LOCATION_MAXSERVERS 10 |
| 911 | struct nfs4_fs_location { |
| 912 | unsigned int nservers; |
| 913 | struct nfs4_string servers[NFS4_FS_LOCATION_MAXSERVERS]; |
| 914 | struct nfs4_pathname rootpath; |
| 915 | }; |
| 916 | |
| 917 | #define NFS4_FS_LOCATIONS_MAXENTRIES 10 |
| 918 | struct nfs4_fs_locations { |
Trond Myklebust | 683b57b | 2006-06-09 09:34:22 -0400 | [diff] [blame] | 919 | struct nfs_fattr fattr; |
| 920 | const struct nfs_server *server; |
Manoj Naik | 7aaa0b3 | 2006-06-09 09:34:23 -0400 | [diff] [blame] | 921 | struct nfs4_pathname fs_path; |
Trond Myklebust | 683b57b | 2006-06-09 09:34:22 -0400 | [diff] [blame] | 922 | int nlocations; |
Manoj Naik | 7aaa0b3 | 2006-06-09 09:34:23 -0400 | [diff] [blame] | 923 | struct nfs4_fs_location locations[NFS4_FS_LOCATIONS_MAXENTRIES]; |
Trond Myklebust | 683b57b | 2006-06-09 09:34:22 -0400 | [diff] [blame] | 924 | }; |
| 925 | |
| 926 | struct nfs4_fs_locations_arg { |
| 927 | const struct nfs_fh *dir_fh; |
| 928 | const struct qstr *name; |
| 929 | struct page *page; |
| 930 | const u32 *bitmask; |
Benny Halevy | 9ff71c3 | 2009-04-01 09:21:52 -0400 | [diff] [blame] | 931 | struct nfs4_sequence_args seq_args; |
Trond Myklebust | 683b57b | 2006-06-09 09:34:22 -0400 | [diff] [blame] | 932 | }; |
| 933 | |
Benny Halevy | 2295846 | 2009-04-01 09:22:02 -0400 | [diff] [blame] | 934 | struct nfs4_fs_locations_res { |
| 935 | struct nfs4_fs_locations *fs_locations; |
| 936 | struct nfs4_sequence_res seq_res; |
| 937 | }; |
| 938 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | #endif /* CONFIG_NFS_V4 */ |
| 940 | |
Benny Halevy | 99fe60d | 2009-04-01 09:22:29 -0400 | [diff] [blame] | 941 | struct nfstime4 { |
| 942 | u64 seconds; |
| 943 | u32 nseconds; |
| 944 | }; |
| 945 | |
| 946 | #ifdef CONFIG_NFS_V4_1 |
| 947 | struct nfs_impl_id4 { |
| 948 | u32 domain_len; |
| 949 | char *domain; |
| 950 | u32 name_len; |
| 951 | char *name; |
| 952 | struct nfstime4 date; |
| 953 | }; |
| 954 | |
| 955 | #define NFS4_EXCHANGE_ID_LEN (48) |
| 956 | struct nfs41_exchange_id_args { |
| 957 | struct nfs_client *client; |
| 958 | nfs4_verifier *verifier; |
| 959 | unsigned int id_len; |
| 960 | char id[NFS4_EXCHANGE_ID_LEN]; |
| 961 | u32 flags; |
| 962 | }; |
| 963 | |
| 964 | struct server_owner { |
| 965 | uint64_t minor_id; |
| 966 | uint32_t major_id_sz; |
| 967 | char major_id[NFS4_OPAQUE_LIMIT]; |
| 968 | }; |
| 969 | |
| 970 | struct server_scope { |
| 971 | uint32_t server_scope_sz; |
| 972 | char server_scope[NFS4_OPAQUE_LIMIT]; |
| 973 | }; |
| 974 | |
| 975 | struct nfs41_exchange_id_res { |
| 976 | struct nfs_client *client; |
| 977 | u32 flags; |
| 978 | }; |
Andy Adamson | fc93158 | 2009-04-01 09:22:31 -0400 | [diff] [blame] | 979 | |
| 980 | struct nfs41_create_session_args { |
| 981 | struct nfs_client *client; |
| 982 | uint32_t flags; |
| 983 | uint32_t cb_program; |
| 984 | struct nfs4_channel_attrs fc_attrs; /* Fore Channel */ |
| 985 | struct nfs4_channel_attrs bc_attrs; /* Back Channel */ |
| 986 | }; |
| 987 | |
| 988 | struct nfs41_create_session_res { |
| 989 | struct nfs_client *client; |
| 990 | }; |
Ricardo Labiaga | 18019753 | 2009-12-05 16:08:40 -0500 | [diff] [blame] | 991 | |
| 992 | struct nfs41_reclaim_complete_args { |
| 993 | /* In the future extend to include curr_fh for use with migration */ |
| 994 | unsigned char one_fs:1; |
| 995 | struct nfs4_sequence_args seq_args; |
| 996 | }; |
| 997 | |
| 998 | struct nfs41_reclaim_complete_res { |
| 999 | struct nfs4_sequence_res seq_res; |
| 1000 | }; |
Benny Halevy | 99fe60d | 2009-04-01 09:22:29 -0400 | [diff] [blame] | 1001 | #endif /* CONFIG_NFS_V4_1 */ |
| 1002 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 | struct nfs_page; |
| 1004 | |
Chuck Lever | 40859d7 | 2005-11-30 18:09:02 -0500 | [diff] [blame] | 1005 | #define NFS_PAGEVEC_SIZE (8U) |
| 1006 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1007 | struct nfs_read_data { |
| 1008 | int flags; |
| 1009 | struct rpc_task task; |
| 1010 | struct inode *inode; |
| 1011 | struct rpc_cred *cred; |
| 1012 | struct nfs_fattr fattr; /* fattr storage */ |
| 1013 | struct list_head pages; /* Coalesced read requests */ |
| 1014 | struct nfs_page *req; /* multi ops per nfs_page */ |
Chuck Lever | 40859d7 | 2005-11-30 18:09:02 -0500 | [diff] [blame] | 1015 | struct page **pagevec; |
Trond Myklebust | e9f7bee | 2006-09-08 09:48:54 -0700 | [diff] [blame] | 1016 | unsigned int npages; /* Max length of pagevec */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 | struct nfs_readargs args; |
| 1018 | struct nfs_readres res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1019 | unsigned long timestamp; /* For lease renewal */ |
Fred Isaman | bae724e | 2011-03-01 01:34:15 +0000 | [diff] [blame^] | 1020 | struct pnfs_layout_segment *lseg; |
Chuck Lever | 0d0b5cb | 2006-05-25 01:40:53 -0400 | [diff] [blame] | 1021 | struct page *page_array[NFS_PAGEVEC_SIZE]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1022 | }; |
| 1023 | |
| 1024 | struct nfs_write_data { |
| 1025 | int flags; |
| 1026 | struct rpc_task task; |
| 1027 | struct inode *inode; |
| 1028 | struct rpc_cred *cred; |
| 1029 | struct nfs_fattr fattr; |
| 1030 | struct nfs_writeverf verf; |
| 1031 | struct list_head pages; /* Coalesced requests we wish to flush */ |
| 1032 | struct nfs_page *req; /* multi ops per nfs_page */ |
Chuck Lever | 40859d7 | 2005-11-30 18:09:02 -0500 | [diff] [blame] | 1033 | struct page **pagevec; |
Trond Myklebust | e9f7bee | 2006-09-08 09:48:54 -0700 | [diff] [blame] | 1034 | unsigned int npages; /* Max length of pagevec */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1035 | struct nfs_writeargs args; /* argument struct */ |
| 1036 | struct nfs_writeres res; /* result struct */ |
| 1037 | #ifdef CONFIG_NFS_V4 |
| 1038 | unsigned long timestamp; /* For lease renewal */ |
| 1039 | #endif |
Chuck Lever | 0d0b5cb | 2006-05-25 01:40:53 -0400 | [diff] [blame] | 1040 | struct page *page_array[NFS_PAGEVEC_SIZE]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1041 | }; |
| 1042 | |
| 1043 | struct nfs_access_entry; |
Andy Adamson | 45a52a0 | 2011-03-01 01:34:08 +0000 | [diff] [blame] | 1044 | struct nfs_client; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | |
| 1046 | /* |
| 1047 | * RPC procedure vector for NFSv2/NFSv3 demuxing |
| 1048 | */ |
| 1049 | struct nfs_rpc_ops { |
Chuck Lever | c0e07cb | 2008-01-14 12:32:05 -0500 | [diff] [blame] | 1050 | u32 version; /* Protocol version */ |
Al Viro | f786aa9 | 2009-02-20 05:51:22 +0000 | [diff] [blame] | 1051 | const struct dentry_operations *dentry_ops; |
Arjan van de Ven | c5ef1c4 | 2007-02-12 00:55:40 -0800 | [diff] [blame] | 1052 | const struct inode_operations *dir_inode_ops; |
| 1053 | const struct inode_operations *file_inode_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | |
| 1055 | int (*getroot) (struct nfs_server *, struct nfs_fh *, |
| 1056 | struct nfs_fsinfo *); |
David Howells | 2b3de44 | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 1057 | int (*lookupfh)(struct nfs_server *, struct nfs_fh *, |
| 1058 | struct qstr *, struct nfs_fh *, |
| 1059 | struct nfs_fattr *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1060 | int (*getattr) (struct nfs_server *, struct nfs_fh *, |
| 1061 | struct nfs_fattr *); |
| 1062 | int (*setattr) (struct dentry *, struct nfs_fattr *, |
| 1063 | struct iattr *); |
| 1064 | int (*lookup) (struct inode *, struct qstr *, |
| 1065 | struct nfs_fh *, struct nfs_fattr *); |
| 1066 | int (*access) (struct inode *, struct nfs_access_entry *); |
| 1067 | int (*readlink)(struct inode *, struct page *, unsigned int, |
| 1068 | unsigned int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1069 | int (*create) (struct inode *, struct dentry *, |
Trond Myklebust | c0204fd | 2010-09-17 10:56:51 -0400 | [diff] [blame] | 1070 | struct iattr *, int, struct nfs_open_context *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1071 | int (*remove) (struct inode *, struct qstr *); |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 1072 | void (*unlink_setup) (struct rpc_message *, struct inode *dir); |
| 1073 | int (*unlink_done) (struct rpc_task *, struct inode *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1074 | int (*rename) (struct inode *, struct qstr *, |
| 1075 | struct inode *, struct qstr *); |
Jeff Layton | d3d4152 | 2010-09-17 17:31:57 -0400 | [diff] [blame] | 1076 | void (*rename_setup) (struct rpc_message *msg, struct inode *dir); |
| 1077 | int (*rename_done) (struct rpc_task *task, struct inode *old_dir, struct inode *new_dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1078 | int (*link) (struct inode *, struct inode *, struct qstr *); |
Chuck Lever | 94a6d75 | 2006-08-22 20:06:23 -0400 | [diff] [blame] | 1079 | int (*symlink) (struct inode *, struct dentry *, struct page *, |
| 1080 | unsigned int, struct iattr *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1081 | int (*mkdir) (struct inode *, struct dentry *, struct iattr *); |
| 1082 | int (*rmdir) (struct inode *, struct qstr *); |
| 1083 | int (*readdir) (struct dentry *, struct rpc_cred *, |
Bryan Schumaker | 56e4ebf | 2010-10-20 15:44:37 -0400 | [diff] [blame] | 1084 | u64, struct page **, unsigned int, int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1085 | int (*mknod) (struct inode *, struct dentry *, struct iattr *, |
| 1086 | dev_t); |
| 1087 | int (*statfs) (struct nfs_server *, struct nfs_fh *, |
| 1088 | struct nfs_fsstat *); |
| 1089 | int (*fsinfo) (struct nfs_server *, struct nfs_fh *, |
| 1090 | struct nfs_fsinfo *); |
| 1091 | int (*pathconf) (struct nfs_server *, struct nfs_fh *, |
| 1092 | struct nfs_pathconf *); |
David Howells | e9326dc | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 1093 | int (*set_capabilities)(struct nfs_server *, struct nfs_fh *); |
Chuck Lever | 573c4e1 | 2010-12-14 14:58:11 +0000 | [diff] [blame] | 1094 | int (*decode_dirent)(struct xdr_stream *, struct nfs_entry *, int); |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 1095 | void (*read_setup) (struct nfs_read_data *, struct rpc_message *); |
Trond Myklebust | ec06c09 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1096 | int (*read_done) (struct rpc_task *, struct nfs_read_data *); |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 1097 | void (*write_setup) (struct nfs_write_data *, struct rpc_message *); |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1098 | int (*write_done) (struct rpc_task *, struct nfs_write_data *); |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 1099 | void (*commit_setup) (struct nfs_write_data *, struct rpc_message *); |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1100 | int (*commit_done) (struct rpc_task *, struct nfs_write_data *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1101 | int (*lock)(struct file *, int, struct file_lock *); |
Trond Myklebust | 2116271 | 2008-05-20 19:34:39 -0400 | [diff] [blame] | 1102 | int (*lock_check_bounds)(const struct file_lock *); |
Trond Myklebust | ada70d9 | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 1103 | void (*clear_acl_cache)(struct inode *); |
Trond Myklebust | 7fe5c39 | 2009-03-19 15:35:50 -0400 | [diff] [blame] | 1104 | void (*close_context)(struct nfs_open_context *ctx, int); |
Trond Myklebust | 2b48429 | 2010-09-17 10:56:51 -0400 | [diff] [blame] | 1105 | struct inode * (*open_context) (struct inode *dir, |
| 1106 | struct nfs_open_context *ctx, |
| 1107 | int open_flags, |
| 1108 | struct iattr *iattr); |
Andy Adamson | 45a52a0 | 2011-03-01 01:34:08 +0000 | [diff] [blame] | 1109 | int (*init_client) (struct nfs_client *, const struct rpc_timeout *, |
| 1110 | const char *, rpc_authflavor_t, int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1111 | }; |
| 1112 | |
| 1113 | /* |
| 1114 | * NFS_CALL(getattr, inode, (fattr)); |
| 1115 | * into |
| 1116 | * NFS_PROTO(inode)->getattr(fattr); |
| 1117 | */ |
| 1118 | #define NFS_CALL(op, inode, args) NFS_PROTO(inode)->op args |
| 1119 | |
| 1120 | /* |
| 1121 | * Function vectors etc. for the NFS client |
| 1122 | */ |
David Howells | 509de81 | 2006-08-22 20:06:11 -0400 | [diff] [blame] | 1123 | extern const struct nfs_rpc_ops nfs_v2_clientops; |
| 1124 | extern const struct nfs_rpc_ops nfs_v3_clientops; |
| 1125 | extern const struct nfs_rpc_ops nfs_v4_clientops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1126 | extern struct rpc_version nfs_version2; |
| 1127 | extern struct rpc_version nfs_version3; |
| 1128 | extern struct rpc_version nfs_version4; |
| 1129 | |
Andreas Gruenbacher | b7fa055 | 2005-06-22 17:16:27 +0000 | [diff] [blame] | 1130 | extern struct rpc_version nfsacl_version3; |
| 1131 | extern struct rpc_program nfsacl_program; |
| 1132 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1133 | #endif |