blob: 4dac59ef6f4fa73ad4b25b373a3d372b6b133b86 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_NFS_XDR_H
2#define _LINUX_NFS_XDR_H
3
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +00004#include <linux/nfsacl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005
Chuck Lever40859d72005-11-30 18:09:02 -05006/*
7 * To change the maximum rsize and wsize supported by the NFS client, adjust
8 * NFS_MAX_FILE_IO_SIZE. 64KB is a typical maximum, but some servers can
9 * support a megabyte or more. The default is left at 4096 bytes, which is
10 * reasonable for NFS over UDP.
11 */
12#define NFS_MAX_FILE_IO_SIZE (1048576U)
13#define NFS_DEF_FILE_IO_SIZE (4096U)
14#define NFS_MIN_FILE_IO_SIZE (1024U)
15
Trond Myklebust8b4bdcf2006-06-09 09:34:19 -040016struct nfs_fsid {
17 uint64_t major;
18 uint64_t minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -070019};
20
Trond Myklebust8b4bdcf2006-06-09 09:34:19 -040021/*
22 * Helper for checking equality between 2 fsids.
23 */
24static inline int nfs_fsid_equal(const struct nfs_fsid *a, const struct nfs_fsid *b)
25{
26 return a->major == b->major && a->minor == b->minor;
27}
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029struct nfs_fattr {
Trond Myklebust9e6e70f2009-03-11 14:10:24 -040030 unsigned int valid; /* which fields are valid */
Trond Myklebustbca79472009-03-11 14:10:26 -040031 umode_t mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 __u32 nlink;
33 __u32 uid;
34 __u32 gid;
Richard Kennedy9fa8d662008-08-26 16:23:20 +010035 dev_t rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 __u64 size;
37 union {
38 struct {
39 __u32 blocksize;
40 __u32 blocks;
41 } nfs2;
42 struct {
43 __u64 used;
44 } nfs3;
45 } du;
Trond Myklebust8b4bdcf2006-06-09 09:34:19 -040046 struct nfs_fsid fsid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 __u64 fileid;
48 struct timespec atime;
49 struct timespec mtime;
50 struct timespec ctime;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 __u64 change_attr; /* NFSv4 change attribute */
52 __u64 pre_change_attr;/* pre-op NFSv4 change attribute */
Trond Myklebust1ca277d2009-03-11 14:10:25 -040053 __u64 pre_size; /* pre_op_attr.size */
54 struct timespec pre_mtime; /* pre_op_attr.mtime */
55 struct timespec pre_ctime; /* pre_op_attr.ctime */
Trond Myklebust33801142005-10-27 22:12:39 -040056 unsigned long time_start;
Trond Myklebust4704f0e2008-10-14 19:16:07 -040057 unsigned long gencount;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058};
59
Trond Myklebust9e6e70f2009-03-11 14:10:24 -040060#define NFS_ATTR_FATTR_TYPE (1U << 0)
61#define NFS_ATTR_FATTR_MODE (1U << 1)
62#define NFS_ATTR_FATTR_NLINK (1U << 2)
63#define NFS_ATTR_FATTR_OWNER (1U << 3)
64#define NFS_ATTR_FATTR_GROUP (1U << 4)
65#define NFS_ATTR_FATTR_RDEV (1U << 5)
66#define NFS_ATTR_FATTR_SIZE (1U << 6)
67#define NFS_ATTR_FATTR_PRESIZE (1U << 7)
68#define NFS_ATTR_FATTR_BLOCKS_USED (1U << 8)
69#define NFS_ATTR_FATTR_SPACE_USED (1U << 9)
70#define NFS_ATTR_FATTR_FSID (1U << 10)
71#define NFS_ATTR_FATTR_FILEID (1U << 11)
72#define NFS_ATTR_FATTR_ATIME (1U << 12)
73#define NFS_ATTR_FATTR_MTIME (1U << 13)
74#define NFS_ATTR_FATTR_CTIME (1U << 14)
75#define NFS_ATTR_FATTR_PREMTIME (1U << 15)
76#define NFS_ATTR_FATTR_PRECTIME (1U << 16)
77#define NFS_ATTR_FATTR_CHANGE (1U << 17)
78#define NFS_ATTR_FATTR_PRECHANGE (1U << 18)
79#define NFS_ATTR_FATTR_V4_REFERRAL (1U << 19) /* NFSv4 referral */
80
81#define NFS_ATTR_FATTR (NFS_ATTR_FATTR_TYPE \
82 | NFS_ATTR_FATTR_MODE \
83 | NFS_ATTR_FATTR_NLINK \
84 | NFS_ATTR_FATTR_OWNER \
85 | NFS_ATTR_FATTR_GROUP \
86 | NFS_ATTR_FATTR_RDEV \
87 | NFS_ATTR_FATTR_SIZE \
88 | NFS_ATTR_FATTR_FSID \
89 | NFS_ATTR_FATTR_FILEID \
90 | NFS_ATTR_FATTR_ATIME \
91 | NFS_ATTR_FATTR_MTIME \
92 | NFS_ATTR_FATTR_CTIME)
93#define NFS_ATTR_FATTR_V2 (NFS_ATTR_FATTR \
94 | NFS_ATTR_FATTR_BLOCKS_USED)
95#define NFS_ATTR_FATTR_V3 (NFS_ATTR_FATTR \
96 | NFS_ATTR_FATTR_SPACE_USED)
97#define NFS_ATTR_FATTR_V4 (NFS_ATTR_FATTR \
98 | NFS_ATTR_FATTR_SPACE_USED \
99 | NFS_ATTR_FATTR_CHANGE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101/*
102 * Info on the file system
103 */
104struct nfs_fsinfo {
105 struct nfs_fattr *fattr; /* Post-op attributes */
106 __u32 rtmax; /* max. read transfer size */
107 __u32 rtpref; /* pref. read transfer size */
108 __u32 rtmult; /* reads should be multiple of this */
109 __u32 wtmax; /* max. write transfer size */
110 __u32 wtpref; /* pref. write transfer size */
111 __u32 wtmult; /* writes should be multiple of this */
112 __u32 dtpref; /* pref. readdir transfer size */
113 __u64 maxfilesize;
114 __u32 lease_time; /* in seconds */
115};
116
117struct nfs_fsstat {
118 struct nfs_fattr *fattr; /* Post-op attributes */
119 __u64 tbytes; /* total size in bytes */
120 __u64 fbytes; /* # of free bytes */
121 __u64 abytes; /* # of bytes available to user */
122 __u64 tfiles; /* # of files */
123 __u64 ffiles; /* # of free files */
124 __u64 afiles; /* # of files available to user */
125};
126
127struct nfs2_fsstat {
128 __u32 tsize; /* Server transfer size */
129 __u32 bsize; /* Filesystem block size */
130 __u32 blocks; /* No. of "bsize" blocks on filesystem */
131 __u32 bfree; /* No. of free "bsize" blocks */
132 __u32 bavail; /* No. of available "bsize" blocks */
133};
134
135struct nfs_pathconf {
136 struct nfs_fattr *fattr; /* Post-op attributes */
137 __u32 max_link; /* max # of hard links */
138 __u32 max_namelen; /* max name length */
139};
140
141struct nfs4_change_info {
142 u32 atomic;
143 u64 before;
144 u64 after;
145};
146
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700147struct nfs_seqid;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400148
Andy Adamson557134a2009-04-01 09:21:53 -0400149/* nfs41 sessions channel attributes */
150struct nfs4_channel_attrs {
151 u32 headerpadsz;
152 u32 max_rqst_sz;
153 u32 max_resp_sz;
154 u32 max_resp_sz_cached;
155 u32 max_ops;
156 u32 max_reqs;
157};
158
159/* nfs41 sessions slot seqid */
160struct nfs4_slot {
161 u32 seq_nr;
162};
163
Benny Halevy9ff71c32009-04-01 09:21:52 -0400164struct nfs4_sequence_args {
165 /* stub */
166};
167
168struct nfs4_sequence_res {
169 /* stub */
170};
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172/*
173 * Arguments to the open call.
174 */
175struct nfs_openargs {
176 const struct nfs_fh * fh;
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700177 struct nfs_seqid * seqid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 int open_flags;
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500179 fmode_t fmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 __u64 clientid;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400181 __u64 id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 union {
183 struct iattr * attrs; /* UNCHECKED, GUARDED */
184 nfs4_verifier verifier; /* EXCLUSIVE */
185 nfs4_stateid delegation; /* CLAIM_DELEGATE_CUR */
Trond Myklebustbd7bf9d2008-12-23 15:21:53 -0500186 fmode_t delegation_type; /* CLAIM_PREVIOUS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 } u;
188 const struct qstr * name;
189 const struct nfs_server *server; /* Needed for ID mapping */
190 const u32 * bitmask;
191 __u32 claim;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400192 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193};
194
195struct nfs_openres {
196 nfs4_stateid stateid;
197 struct nfs_fh fh;
198 struct nfs4_change_info cinfo;
199 __u32 rflags;
200 struct nfs_fattr * f_attr;
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400201 struct nfs_fattr * dir_attr;
Trond Myklebustc1d51932008-04-07 13:20:54 -0400202 struct nfs_seqid * seqid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 const struct nfs_server *server;
Trond Myklebustbd7bf9d2008-12-23 15:21:53 -0500204 fmode_t delegation_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 nfs4_stateid delegation;
206 __u32 do_recall;
207 __u64 maxsize;
Jeff Laytonaa53ed52007-06-05 14:49:03 -0400208 __u32 attrset[NFS4_BITMAP_SIZE];
Benny Halevy9ff71c32009-04-01 09:21:52 -0400209 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210};
211
212/*
213 * Arguments to the open_confirm call.
214 */
215struct nfs_open_confirmargs {
216 const struct nfs_fh * fh;
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100217 nfs4_stateid * stateid;
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700218 struct nfs_seqid * seqid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219};
220
221struct nfs_open_confirmres {
222 nfs4_stateid stateid;
Trond Myklebustc1d51932008-04-07 13:20:54 -0400223 struct nfs_seqid * seqid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224};
225
226/*
227 * Arguments to the close call.
228 */
229struct nfs_closeargs {
230 struct nfs_fh * fh;
Trond Myklebust95121352005-10-18 14:20:12 -0700231 nfs4_stateid * stateid;
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700232 struct nfs_seqid * seqid;
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500233 fmode_t fmode;
Trond Myklebust516a6af2005-10-27 22:12:41 -0400234 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400235 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236};
237
238struct nfs_closeres {
239 nfs4_stateid stateid;
Trond Myklebust516a6af2005-10-27 22:12:41 -0400240 struct nfs_fattr * fattr;
Trond Myklebustc1d51932008-04-07 13:20:54 -0400241 struct nfs_seqid * seqid;
Trond Myklebust516a6af2005-10-27 22:12:41 -0400242 const struct nfs_server *server;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400243 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244};
245/*
246 * * Arguments to the lock,lockt, and locku call.
247 * */
248struct nfs_lowner {
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100249 __u64 clientid;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400250 __u64 id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251};
252
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100253struct nfs_lock_args {
254 struct nfs_fh * fh;
255 struct file_lock * fl;
Trond Myklebust06735b32005-10-18 14:20:15 -0700256 struct nfs_seqid * lock_seqid;
257 nfs4_stateid * lock_stateid;
258 struct nfs_seqid * open_seqid;
259 nfs4_stateid * open_stateid;
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100260 struct nfs_lowner lock_owner;
261 unsigned char block : 1;
262 unsigned char reclaim : 1;
263 unsigned char new_lock_owner : 1;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400264 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265};
266
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100267struct nfs_lock_res {
Trond Myklebustc1d51932008-04-07 13:20:54 -0400268 nfs4_stateid stateid;
269 struct nfs_seqid * lock_seqid;
270 struct nfs_seqid * open_seqid;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400271 struct nfs4_sequence_res seq_res;
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100272};
273
274struct nfs_locku_args {
275 struct nfs_fh * fh;
276 struct file_lock * fl;
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700277 struct nfs_seqid * seqid;
Trond Myklebustfaf5f492005-10-18 14:20:15 -0700278 nfs4_stateid * stateid;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400279 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280};
281
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100282struct nfs_locku_res {
Trond Myklebustc1d51932008-04-07 13:20:54 -0400283 nfs4_stateid stateid;
284 struct nfs_seqid * seqid;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400285 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286};
287
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100288struct nfs_lockt_args {
289 struct nfs_fh * fh;
290 struct file_lock * fl;
291 struct nfs_lowner lock_owner;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400292 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293};
294
Trond Myklebust911d1aa2006-01-03 09:55:16 +0100295struct nfs_lockt_res {
296 struct file_lock * denied; /* LOCK, LOCKT failed */
Benny Halevy9ff71c32009-04-01 09:21:52 -0400297 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298};
299
300struct nfs4_delegreturnargs {
301 const struct nfs_fh *fhandle;
302 const nfs4_stateid *stateid;
Trond Myklebustfa178f22006-01-03 09:55:38 +0100303 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400304 struct nfs4_sequence_args seq_args;
Trond Myklebustfa178f22006-01-03 09:55:38 +0100305};
306
307struct nfs4_delegreturnres {
308 struct nfs_fattr * fattr;
309 const struct nfs_server *server;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400310 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311};
312
313/*
314 * Arguments to the read call.
315 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316struct nfs_readargs {
317 struct nfs_fh * fh;
318 struct nfs_open_context *context;
319 __u64 offset;
320 __u32 count;
321 unsigned int pgbase;
322 struct page ** pages;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400323 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324};
325
326struct nfs_readres {
327 struct nfs_fattr * fattr;
328 __u32 count;
329 int eof;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400330 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331};
332
333/*
334 * Arguments to the write call.
335 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336struct nfs_writeargs {
337 struct nfs_fh * fh;
338 struct nfs_open_context *context;
339 __u64 offset;
340 __u32 count;
341 enum nfs3_stable_how stable;
342 unsigned int pgbase;
343 struct page ** pages;
Trond Myklebust4f9838c2005-10-27 22:12:44 -0400344 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400345 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346};
347
348struct nfs_writeverf {
349 enum nfs3_stable_how committed;
Al Virobc4785c2006-10-19 23:28:51 -0700350 __be32 verifier[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351};
352
353struct nfs_writeres {
354 struct nfs_fattr * fattr;
355 struct nfs_writeverf * verf;
356 __u32 count;
Trond Myklebust4f9838c2005-10-27 22:12:44 -0400357 const struct nfs_server *server;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400358 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359};
360
361/*
Trond Myklebust4fdc17b2007-07-14 15:39:57 -0400362 * Common arguments to the unlink call
363 */
364struct nfs_removeargs {
365 const struct nfs_fh *fh;
366 struct qstr name;
367 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400368 struct nfs4_sequence_args seq_args;
Trond Myklebust4fdc17b2007-07-14 15:39:57 -0400369};
370
371struct nfs_removeres {
372 const struct nfs_server *server;
373 struct nfs4_change_info cinfo;
374 struct nfs_fattr dir_attr;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400375 struct nfs4_sequence_res seq_res;
Trond Myklebust4fdc17b2007-07-14 15:39:57 -0400376};
377
378/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 * Argument struct for decode_entry function
380 */
381struct nfs_entry {
382 __u64 ino;
383 __u64 cookie,
384 prev_cookie;
385 const char * name;
386 unsigned int len;
387 int eof;
388 struct nfs_fh * fh;
389 struct nfs_fattr * fattr;
390};
391
392/*
393 * The following types are for NFSv2 only.
394 */
395struct nfs_sattrargs {
396 struct nfs_fh * fh;
397 struct iattr * sattr;
398};
399
400struct nfs_diropargs {
401 struct nfs_fh * fh;
402 const char * name;
403 unsigned int len;
404};
405
406struct nfs_createargs {
407 struct nfs_fh * fh;
408 const char * name;
409 unsigned int len;
410 struct iattr * sattr;
411};
412
413struct nfs_renameargs {
414 struct nfs_fh * fromfh;
415 const char * fromname;
416 unsigned int fromlen;
417 struct nfs_fh * tofh;
418 const char * toname;
419 unsigned int tolen;
420};
421
422struct nfs_setattrargs {
423 struct nfs_fh * fh;
424 nfs4_stateid stateid;
425 struct iattr * iap;
426 const struct nfs_server * server; /* Needed for name mapping */
427 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400428 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429};
430
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000431struct nfs_setaclargs {
432 struct nfs_fh * fh;
433 size_t acl_len;
434 unsigned int acl_pgbase;
435 struct page ** acl_pages;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400436 struct nfs4_sequence_args seq_args;
J. Bruce Fields23ec6962005-06-22 17:16:22 +0000437};
438
J. Bruce Fields029d1052005-06-22 17:16:22 +0000439struct nfs_getaclargs {
440 struct nfs_fh * fh;
441 size_t acl_len;
442 unsigned int acl_pgbase;
443 struct page ** acl_pages;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400444 struct nfs4_sequence_args seq_args;
J. Bruce Fields029d1052005-06-22 17:16:22 +0000445};
446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447struct nfs_setattrres {
448 struct nfs_fattr * fattr;
449 const struct nfs_server * server;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400450 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451};
452
453struct nfs_linkargs {
454 struct nfs_fh * fromfh;
455 struct nfs_fh * tofh;
456 const char * toname;
457 unsigned int tolen;
458};
459
460struct nfs_symlinkargs {
461 struct nfs_fh * fromfh;
462 const char * fromname;
463 unsigned int fromlen;
Chuck Lever94a6d752006-08-22 20:06:23 -0400464 struct page ** pages;
465 unsigned int pathlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 struct iattr * sattr;
467};
468
469struct nfs_readdirargs {
470 struct nfs_fh * fh;
471 __u32 cookie;
472 unsigned int count;
473 struct page ** pages;
474};
475
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000476struct nfs3_getaclargs {
477 struct nfs_fh * fh;
478 int mask;
479 struct page ** pages;
480};
481
482struct nfs3_setaclargs {
483 struct inode * inode;
484 int mask;
485 struct posix_acl * acl_access;
486 struct posix_acl * acl_default;
Trond Myklebustae461412009-03-10 20:33:18 -0400487 size_t len;
488 unsigned int npages;
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000489 struct page ** pages;
490};
491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492struct nfs_diropok {
493 struct nfs_fh * fh;
494 struct nfs_fattr * fattr;
495};
496
497struct nfs_readlinkargs {
498 struct nfs_fh * fh;
499 unsigned int pgbase;
500 unsigned int pglen;
501 struct page ** pages;
502};
503
504struct nfs3_sattrargs {
505 struct nfs_fh * fh;
506 struct iattr * sattr;
507 unsigned int guard;
508 struct timespec guardtime;
509};
510
511struct nfs3_diropargs {
512 struct nfs_fh * fh;
513 const char * name;
514 unsigned int len;
515};
516
517struct nfs3_accessargs {
518 struct nfs_fh * fh;
519 __u32 access;
520};
521
522struct nfs3_createargs {
523 struct nfs_fh * fh;
524 const char * name;
525 unsigned int len;
526 struct iattr * sattr;
527 enum nfs3_createmode createmode;
Al Virobc4785c2006-10-19 23:28:51 -0700528 __be32 verifier[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529};
530
531struct nfs3_mkdirargs {
532 struct nfs_fh * fh;
533 const char * name;
534 unsigned int len;
535 struct iattr * sattr;
536};
537
538struct nfs3_symlinkargs {
539 struct nfs_fh * fromfh;
540 const char * fromname;
541 unsigned int fromlen;
Chuck Lever94a6d752006-08-22 20:06:23 -0400542 struct page ** pages;
543 unsigned int pathlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 struct iattr * sattr;
545};
546
547struct nfs3_mknodargs {
548 struct nfs_fh * fh;
549 const char * name;
550 unsigned int len;
551 enum nfs3_ftype type;
552 struct iattr * sattr;
553 dev_t rdev;
554};
555
556struct nfs3_renameargs {
557 struct nfs_fh * fromfh;
558 const char * fromname;
559 unsigned int fromlen;
560 struct nfs_fh * tofh;
561 const char * toname;
562 unsigned int tolen;
563};
564
565struct nfs3_linkargs {
566 struct nfs_fh * fromfh;
567 struct nfs_fh * tofh;
568 const char * toname;
569 unsigned int tolen;
570};
571
572struct nfs3_readdirargs {
573 struct nfs_fh * fh;
574 __u64 cookie;
Al Virobc4785c2006-10-19 23:28:51 -0700575 __be32 verf[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 int plus;
577 unsigned int count;
578 struct page ** pages;
579};
580
581struct nfs3_diropres {
582 struct nfs_fattr * dir_attr;
583 struct nfs_fh * fh;
584 struct nfs_fattr * fattr;
585};
586
587struct nfs3_accessres {
588 struct nfs_fattr * fattr;
589 __u32 access;
590};
591
592struct nfs3_readlinkargs {
593 struct nfs_fh * fh;
594 unsigned int pgbase;
595 unsigned int pglen;
596 struct page ** pages;
597};
598
599struct nfs3_renameres {
600 struct nfs_fattr * fromattr;
601 struct nfs_fattr * toattr;
602};
603
604struct nfs3_linkres {
605 struct nfs_fattr * dir_attr;
606 struct nfs_fattr * fattr;
607};
608
609struct nfs3_readdirres {
610 struct nfs_fattr * dir_attr;
Al Virobc4785c2006-10-19 23:28:51 -0700611 __be32 * verf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 int plus;
613};
614
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000615struct nfs3_getaclres {
616 struct nfs_fattr * fattr;
617 int mask;
618 unsigned int acl_access_count;
619 unsigned int acl_default_count;
620 struct posix_acl * acl_access;
621 struct posix_acl * acl_default;
622};
623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624#ifdef CONFIG_NFS_V4
625
626typedef u64 clientid4;
627
628struct nfs4_accessargs {
629 const struct nfs_fh * fh;
Trond Myklebust76b32992007-08-10 17:45:11 -0400630 const u32 * bitmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 u32 access;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400632 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633};
634
635struct nfs4_accessres {
Trond Myklebust76b32992007-08-10 17:45:11 -0400636 const struct nfs_server * server;
637 struct nfs_fattr * fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 u32 supported;
639 u32 access;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400640 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641};
642
643struct nfs4_create_arg {
644 u32 ftype;
645 union {
Chuck Lever94a6d752006-08-22 20:06:23 -0400646 struct {
647 struct page ** pages;
648 unsigned int len;
649 } symlink; /* NF4LNK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 struct {
651 u32 specdata1;
652 u32 specdata2;
653 } device; /* NF4BLK, NF4CHR */
654 } u;
655 const struct qstr * name;
656 const struct nfs_server * server;
657 const struct iattr * attrs;
658 const struct nfs_fh * dir_fh;
659 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400660 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661};
662
663struct nfs4_create_res {
664 const struct nfs_server * server;
665 struct nfs_fh * fh;
666 struct nfs_fattr * fattr;
667 struct nfs4_change_info dir_cinfo;
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400668 struct nfs_fattr * dir_fattr;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400669 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670};
671
672struct nfs4_fsinfo_arg {
673 const struct nfs_fh * fh;
674 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400675 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676};
677
678struct nfs4_getattr_arg {
679 const struct nfs_fh * fh;
680 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400681 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682};
683
684struct nfs4_getattr_res {
685 const struct nfs_server * server;
686 struct nfs_fattr * fattr;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400687 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688};
689
690struct nfs4_link_arg {
691 const struct nfs_fh * fh;
692 const struct nfs_fh * dir_fh;
693 const struct qstr * name;
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400694 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400695 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696};
697
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400698struct nfs4_link_res {
699 const struct nfs_server * server;
700 struct nfs_fattr * fattr;
701 struct nfs4_change_info cinfo;
702 struct nfs_fattr * dir_attr;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400703 struct nfs4_sequence_res seq_res;
Trond Myklebust91ba2ee2005-10-27 22:12:42 -0400704};
705
706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707struct nfs4_lookup_arg {
708 const struct nfs_fh * dir_fh;
709 const struct qstr * name;
710 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400711 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712};
713
714struct nfs4_lookup_res {
715 const struct nfs_server * server;
716 struct nfs_fattr * fattr;
717 struct nfs_fh * fh;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400718 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719};
720
721struct nfs4_lookup_root_arg {
722 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400723 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724};
725
726struct nfs4_pathconf_arg {
727 const struct nfs_fh * fh;
728 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400729 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730};
731
732struct nfs4_readdir_arg {
733 const struct nfs_fh * fh;
734 u64 cookie;
735 nfs4_verifier verifier;
736 u32 count;
737 struct page ** pages; /* zero-copy data */
738 unsigned int pgbase; /* zero-copy data */
739 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400740 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741};
742
743struct nfs4_readdir_res {
744 nfs4_verifier verifier;
745 unsigned int pgbase;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400746 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747};
748
749struct nfs4_readlink {
750 const struct nfs_fh * fh;
751 unsigned int pgbase;
752 unsigned int pglen; /* zero-copy data */
753 struct page ** pages; /* zero-copy data */
Benny Halevy9ff71c32009-04-01 09:21:52 -0400754 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755};
756
Benny Halevyf50c7002009-04-01 09:21:55 -0400757struct nfs4_readlink_res {
758 struct nfs4_sequence_res seq_res;
759};
760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761struct nfs4_rename_arg {
762 const struct nfs_fh * old_dir;
763 const struct nfs_fh * new_dir;
764 const struct qstr * old_name;
765 const struct qstr * new_name;
Trond Myklebust6caf2c82005-10-27 22:12:43 -0400766 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400767 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768};
769
770struct nfs4_rename_res {
Trond Myklebust6caf2c82005-10-27 22:12:43 -0400771 const struct nfs_server * server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 struct nfs4_change_info old_cinfo;
Trond Myklebust6caf2c82005-10-27 22:12:43 -0400773 struct nfs_fattr * old_fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 struct nfs4_change_info new_cinfo;
Trond Myklebust6caf2c82005-10-27 22:12:43 -0400775 struct nfs_fattr * new_fattr;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400776 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777};
778
Trond Myklebust19d771f2008-10-08 13:54:52 -0400779#define NFS4_SETCLIENTID_NAMELEN (127)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780struct nfs4_setclientid {
Chuck Levercc38bac2007-12-10 14:56:54 -0500781 const nfs4_verifier * sc_verifier;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 unsigned int sc_name_len;
Chuck Leverd1ce02e2008-09-25 11:57:12 -0400783 char sc_name[NFS4_SETCLIENTID_NAMELEN + 1];
Chuck Levercc38bac2007-12-10 14:56:54 -0500784 u32 sc_prog;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 unsigned int sc_netid_len;
Chuck Leverd1ce02e2008-09-25 11:57:12 -0400786 char sc_netid[RPCBIND_MAXNETIDLEN + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 unsigned int sc_uaddr_len;
Chuck Leverd1ce02e2008-09-25 11:57:12 -0400788 char sc_uaddr[RPCBIND_MAXUADDRLEN + 1];
Chuck Levercc38bac2007-12-10 14:56:54 -0500789 u32 sc_cb_ident;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790};
791
792struct nfs4_statfs_arg {
793 const struct nfs_fh * fh;
794 const u32 * bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400795 struct nfs4_sequence_args seq_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796};
797
Benny Halevy24ad1482009-04-01 09:21:56 -0400798struct nfs4_statfs_res {
799 struct nfs_fsstat *fsstat;
800 struct nfs4_sequence_res seq_res;
801};
802
Benny Halevy43652ad2009-04-01 09:21:54 -0400803struct nfs4_server_caps_arg {
804 struct nfs_fh *fhandle;
805 struct nfs4_sequence_args seq_args;
806};
807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808struct nfs4_server_caps_res {
809 u32 attr_bitmask[2];
810 u32 acl_bitmask;
811 u32 has_links;
812 u32 has_symlinks;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400813 struct nfs4_sequence_res seq_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814};
815
Manoj Naik7aaa0b32006-06-09 09:34:23 -0400816struct nfs4_string {
817 unsigned int len;
818 char *data;
Trond Myklebust683b57b2006-06-09 09:34:22 -0400819};
820
Manoj Naik7aaa0b32006-06-09 09:34:23 -0400821#define NFS4_PATHNAME_MAXCOMPONENTS 512
822struct nfs4_pathname {
823 unsigned int ncomponents;
824 struct nfs4_string components[NFS4_PATHNAME_MAXCOMPONENTS];
825};
826
827#define NFS4_FS_LOCATION_MAXSERVERS 10
828struct nfs4_fs_location {
829 unsigned int nservers;
830 struct nfs4_string servers[NFS4_FS_LOCATION_MAXSERVERS];
831 struct nfs4_pathname rootpath;
832};
833
834#define NFS4_FS_LOCATIONS_MAXENTRIES 10
835struct nfs4_fs_locations {
Trond Myklebust683b57b2006-06-09 09:34:22 -0400836 struct nfs_fattr fattr;
837 const struct nfs_server *server;
Manoj Naik7aaa0b32006-06-09 09:34:23 -0400838 struct nfs4_pathname fs_path;
Trond Myklebust683b57b2006-06-09 09:34:22 -0400839 int nlocations;
Manoj Naik7aaa0b32006-06-09 09:34:23 -0400840 struct nfs4_fs_location locations[NFS4_FS_LOCATIONS_MAXENTRIES];
Trond Myklebust683b57b2006-06-09 09:34:22 -0400841};
842
843struct nfs4_fs_locations_arg {
844 const struct nfs_fh *dir_fh;
845 const struct qstr *name;
846 struct page *page;
847 const u32 *bitmask;
Benny Halevy9ff71c32009-04-01 09:21:52 -0400848 struct nfs4_sequence_args seq_args;
Trond Myklebust683b57b2006-06-09 09:34:22 -0400849};
850
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851#endif /* CONFIG_NFS_V4 */
852
853struct nfs_page;
854
Chuck Lever40859d72005-11-30 18:09:02 -0500855#define NFS_PAGEVEC_SIZE (8U)
856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857struct nfs_read_data {
858 int flags;
859 struct rpc_task task;
860 struct inode *inode;
861 struct rpc_cred *cred;
862 struct nfs_fattr fattr; /* fattr storage */
863 struct list_head pages; /* Coalesced read requests */
864 struct nfs_page *req; /* multi ops per nfs_page */
Chuck Lever40859d72005-11-30 18:09:02 -0500865 struct page **pagevec;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700866 unsigned int npages; /* Max length of pagevec */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 struct nfs_readargs args;
868 struct nfs_readres res;
869#ifdef CONFIG_NFS_V4
870 unsigned long timestamp; /* For lease renewal */
871#endif
Chuck Lever0d0b5cb2006-05-25 01:40:53 -0400872 struct page *page_array[NFS_PAGEVEC_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873};
874
875struct nfs_write_data {
876 int flags;
877 struct rpc_task task;
878 struct inode *inode;
879 struct rpc_cred *cred;
880 struct nfs_fattr fattr;
881 struct nfs_writeverf verf;
882 struct list_head pages; /* Coalesced requests we wish to flush */
883 struct nfs_page *req; /* multi ops per nfs_page */
Chuck Lever40859d72005-11-30 18:09:02 -0500884 struct page **pagevec;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700885 unsigned int npages; /* Max length of pagevec */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 struct nfs_writeargs args; /* argument struct */
887 struct nfs_writeres res; /* result struct */
888#ifdef CONFIG_NFS_V4
889 unsigned long timestamp; /* For lease renewal */
890#endif
Chuck Lever0d0b5cb2006-05-25 01:40:53 -0400891 struct page *page_array[NFS_PAGEVEC_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892};
893
894struct nfs_access_entry;
895
896/*
897 * RPC procedure vector for NFSv2/NFSv3 demuxing
898 */
899struct nfs_rpc_ops {
Chuck Leverc0e07cb2008-01-14 12:32:05 -0500900 u32 version; /* Protocol version */
Al Virof786aa92009-02-20 05:51:22 +0000901 const struct dentry_operations *dentry_ops;
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800902 const struct inode_operations *dir_inode_ops;
903 const struct inode_operations *file_inode_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
905 int (*getroot) (struct nfs_server *, struct nfs_fh *,
906 struct nfs_fsinfo *);
David Howells2b3de442006-08-22 20:06:09 -0400907 int (*lookupfh)(struct nfs_server *, struct nfs_fh *,
908 struct qstr *, struct nfs_fh *,
909 struct nfs_fattr *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 int (*getattr) (struct nfs_server *, struct nfs_fh *,
911 struct nfs_fattr *);
912 int (*setattr) (struct dentry *, struct nfs_fattr *,
913 struct iattr *);
914 int (*lookup) (struct inode *, struct qstr *,
915 struct nfs_fh *, struct nfs_fattr *);
916 int (*access) (struct inode *, struct nfs_access_entry *);
917 int (*readlink)(struct inode *, struct page *, unsigned int,
918 unsigned int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 int (*create) (struct inode *, struct dentry *,
Trond Myklebust02a913a2005-10-18 14:20:17 -0700920 struct iattr *, int, struct nameidata *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 int (*remove) (struct inode *, struct qstr *);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400922 void (*unlink_setup) (struct rpc_message *, struct inode *dir);
923 int (*unlink_done) (struct rpc_task *, struct inode *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 int (*rename) (struct inode *, struct qstr *,
925 struct inode *, struct qstr *);
926 int (*link) (struct inode *, struct inode *, struct qstr *);
Chuck Lever94a6d752006-08-22 20:06:23 -0400927 int (*symlink) (struct inode *, struct dentry *, struct page *,
928 unsigned int, struct iattr *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 int (*mkdir) (struct inode *, struct dentry *, struct iattr *);
930 int (*rmdir) (struct inode *, struct qstr *);
931 int (*readdir) (struct dentry *, struct rpc_cred *,
932 u64, struct page *, unsigned int, int);
933 int (*mknod) (struct inode *, struct dentry *, struct iattr *,
934 dev_t);
935 int (*statfs) (struct nfs_server *, struct nfs_fh *,
936 struct nfs_fsstat *);
937 int (*fsinfo) (struct nfs_server *, struct nfs_fh *,
938 struct nfs_fsinfo *);
939 int (*pathconf) (struct nfs_server *, struct nfs_fh *,
940 struct nfs_pathconf *);
David Howellse9326dc2006-08-22 20:06:10 -0400941 int (*set_capabilities)(struct nfs_server *, struct nfs_fh *);
Al Viro0dbb4c62006-10-19 23:28:49 -0700942 __be32 *(*decode_dirent)(__be32 *, struct nfs_entry *, int plus);
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400943 void (*read_setup) (struct nfs_read_data *, struct rpc_message *);
Trond Myklebustec06c092006-03-20 13:44:27 -0500944 int (*read_done) (struct rpc_task *, struct nfs_read_data *);
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400945 void (*write_setup) (struct nfs_write_data *, struct rpc_message *);
Trond Myklebust788e7a82006-03-20 13:44:27 -0500946 int (*write_done) (struct rpc_task *, struct nfs_write_data *);
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400947 void (*commit_setup) (struct nfs_write_data *, struct rpc_message *);
Trond Myklebust788e7a82006-03-20 13:44:27 -0500948 int (*commit_done) (struct rpc_task *, struct nfs_write_data *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 int (*lock)(struct file *, int, struct file_lock *);
Trond Myklebust21162712008-05-20 19:34:39 -0400950 int (*lock_check_bounds)(const struct file_lock *);
Trond Myklebustada70d92005-06-22 17:16:22 +0000951 void (*clear_acl_cache)(struct inode *);
Trond Myklebust7fe5c392009-03-19 15:35:50 -0400952 void (*close_context)(struct nfs_open_context *ctx, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953};
954
955/*
956 * NFS_CALL(getattr, inode, (fattr));
957 * into
958 * NFS_PROTO(inode)->getattr(fattr);
959 */
960#define NFS_CALL(op, inode, args) NFS_PROTO(inode)->op args
961
962/*
963 * Function vectors etc. for the NFS client
964 */
David Howells509de812006-08-22 20:06:11 -0400965extern const struct nfs_rpc_ops nfs_v2_clientops;
966extern const struct nfs_rpc_ops nfs_v3_clientops;
967extern const struct nfs_rpc_ops nfs_v4_clientops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968extern struct rpc_version nfs_version2;
969extern struct rpc_version nfs_version3;
970extern struct rpc_version nfs_version4;
971
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000972extern struct rpc_version nfsacl_version3;
973extern struct rpc_program nfsacl_program;
974
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975#endif