0f33e621892f5eca239a5fcf8eaf85375296cf52
[powerpc.git] / include / linux / nfs_xdr.h
1 #ifndef _LINUX_NFS_XDR_H
2 #define _LINUX_NFS_XDR_H
3
4 #include <linux/nfsacl.h>
5
6 /*
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
16 struct nfs_fsid {
17         uint64_t                major;
18         uint64_t                minor;
19 };
20
21 /*
22  * Helper for checking equality between 2 fsids.
23  */
24 static 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
29 struct nfs_fattr {
30         unsigned short          valid;          /* which fields are valid */
31         __u64                   pre_size;       /* pre_op_attr.size       */
32         struct timespec         pre_mtime;      /* pre_op_attr.mtime      */
33         struct timespec         pre_ctime;      /* pre_op_attr.ctime      */
34         enum nfs_ftype          type;           /* always use NFSv2 types */
35         __u32                   mode;
36         __u32                   nlink;
37         __u32                   uid;
38         __u32                   gid;
39         __u64                   size;
40         union {
41                 struct {
42                         __u32   blocksize;
43                         __u32   blocks;
44                 } nfs2;
45                 struct {
46                         __u64   used;
47                 } nfs3;
48         } du;
49         dev_t                   rdev;
50         struct nfs_fsid         fsid;
51         __u64                   fileid;
52         struct timespec         atime;
53         struct timespec         mtime;
54         struct timespec         ctime;
55         __u32                   bitmap[2];      /* NFSv4 returned attribute bitmap */
56         __u64                   change_attr;    /* NFSv4 change attribute */
57         __u64                   pre_change_attr;/* pre-op NFSv4 change attribute */
58         unsigned long           time_start;
59 };
60
61 #define NFS_ATTR_WCC            0x0001          /* pre-op WCC data    */
62 #define NFS_ATTR_FATTR          0x0002          /* post-op attributes */
63 #define NFS_ATTR_FATTR_V3       0x0004          /* NFSv3 attributes */
64 #define NFS_ATTR_FATTR_V4       0x0008          /* NFSv4 change attribute */
65 #define NFS_ATTR_FATTR_V4_REFERRAL      0x0010          /* NFSv4 referral */
66
67 /*
68  * Info on the file system
69  */
70 struct nfs_fsinfo {
71         struct nfs_fattr        *fattr; /* Post-op attributes */
72         __u32                   rtmax;  /* max.  read transfer size */
73         __u32                   rtpref; /* pref. read transfer size */
74         __u32                   rtmult; /* reads should be multiple of this */
75         __u32                   wtmax;  /* max.  write transfer size */
76         __u32                   wtpref; /* pref. write transfer size */
77         __u32                   wtmult; /* writes should be multiple of this */
78         __u32                   dtpref; /* pref. readdir transfer size */
79         __u64                   maxfilesize;
80         __u32                   lease_time; /* in seconds */
81 };
82
83 struct nfs_fsstat {
84         struct nfs_fattr        *fattr; /* Post-op attributes */
85         __u64                   tbytes; /* total size in bytes */
86         __u64                   fbytes; /* # of free bytes */
87         __u64                   abytes; /* # of bytes available to user */
88         __u64                   tfiles; /* # of files */
89         __u64                   ffiles; /* # of free files */
90         __u64                   afiles; /* # of files available to user */
91 };
92
93 struct nfs2_fsstat {
94         __u32                   tsize;  /* Server transfer size */
95         __u32                   bsize;  /* Filesystem block size */
96         __u32                   blocks; /* No. of "bsize" blocks on filesystem */
97         __u32                   bfree;  /* No. of free "bsize" blocks */
98         __u32                   bavail; /* No. of available "bsize" blocks */
99 };
100
101 struct nfs_pathconf {
102         struct nfs_fattr        *fattr; /* Post-op attributes */
103         __u32                   max_link; /* max # of hard links */
104         __u32                   max_namelen; /* max name length */
105 };
106
107 struct nfs4_change_info {
108         u32                     atomic;
109         u64                     before;
110         u64                     after;
111 };
112
113 struct nfs_seqid;
114 /*
115  * Arguments to the open call.
116  */
117 struct nfs_openargs {
118         const struct nfs_fh *   fh;
119         struct nfs_seqid *      seqid;
120         int                     open_flags;
121         __u64                   clientid;
122         __u32                   id;
123         union {
124                 struct iattr *  attrs;    /* UNCHECKED, GUARDED */
125                 nfs4_verifier   verifier; /* EXCLUSIVE */
126                 nfs4_stateid    delegation;             /* CLAIM_DELEGATE_CUR */
127                 int             delegation_type;        /* CLAIM_PREVIOUS */
128         } u;
129         const struct qstr *     name;
130         const struct nfs_server *server;         /* Needed for ID mapping */
131         const u32 *             bitmask;
132         __u32                   claim;
133 };
134
135 struct nfs_openres {
136         nfs4_stateid            stateid;
137         struct nfs_fh           fh;
138         struct nfs4_change_info cinfo;
139         __u32                   rflags;
140         struct nfs_fattr *      f_attr;
141         struct nfs_fattr *      dir_attr;
142         const struct nfs_server *server;
143         int                     delegation_type;
144         nfs4_stateid            delegation;
145         __u32                   do_recall;
146         __u64                   maxsize;
147 };
148
149 /*
150  * Arguments to the open_confirm call.
151  */
152 struct nfs_open_confirmargs {
153         const struct nfs_fh *   fh;
154         nfs4_stateid *          stateid;
155         struct nfs_seqid *      seqid;
156 };
157
158 struct nfs_open_confirmres {
159         nfs4_stateid            stateid;
160 };
161
162 /*
163  * Arguments to the close call.
164  */
165 struct nfs_closeargs {
166         struct nfs_fh *         fh;
167         nfs4_stateid *          stateid;
168         struct nfs_seqid *      seqid;
169         int                     open_flags;
170         const u32 *             bitmask;
171 };
172
173 struct nfs_closeres {
174         nfs4_stateid            stateid;
175         struct nfs_fattr *      fattr;
176         const struct nfs_server *server;
177 };
178 /*
179  *  * Arguments to the lock,lockt, and locku call.
180  *   */
181 struct nfs_lowner {
182         __u64                   clientid;
183         u32                     id;
184 };
185
186 struct nfs_lock_args {
187         struct nfs_fh *         fh;
188         struct file_lock *      fl;
189         struct nfs_seqid *      lock_seqid;
190         nfs4_stateid *          lock_stateid;
191         struct nfs_seqid *      open_seqid;
192         nfs4_stateid *          open_stateid;
193         struct nfs_lowner       lock_owner;
194         unsigned char           block : 1;
195         unsigned char           reclaim : 1;
196         unsigned char           new_lock_owner : 1;
197 };
198
199 struct nfs_lock_res {
200         nfs4_stateid                    stateid;
201 };
202
203 struct nfs_locku_args {
204         struct nfs_fh *         fh;
205         struct file_lock *      fl;
206         struct nfs_seqid *      seqid;
207         nfs4_stateid *          stateid;
208 };
209
210 struct nfs_locku_res {
211         nfs4_stateid                    stateid;
212 };
213
214 struct nfs_lockt_args {
215         struct nfs_fh *         fh;
216         struct file_lock *      fl;
217         struct nfs_lowner       lock_owner;
218 };
219
220 struct nfs_lockt_res {
221         struct file_lock *      denied; /* LOCK, LOCKT failed */
222 };
223
224 struct nfs4_delegreturnargs {
225         const struct nfs_fh *fhandle;
226         const nfs4_stateid *stateid;
227         const u32 * bitmask;
228 };
229
230 struct nfs4_delegreturnres {
231         struct nfs_fattr * fattr;
232         const struct nfs_server *server;
233 };
234
235 /*
236  * Arguments to the read call.
237  */
238 struct nfs_readargs {
239         struct nfs_fh *         fh;
240         struct nfs_open_context *context;
241         __u64                   offset;
242         __u32                   count;
243         unsigned int            pgbase;
244         struct page **          pages;
245 };
246
247 struct nfs_readres {
248         struct nfs_fattr *      fattr;
249         __u32                   count;
250         int                     eof;
251 };
252
253 /*
254  * Arguments to the write call.
255  */
256 struct nfs_writeargs {
257         struct nfs_fh *         fh;
258         struct nfs_open_context *context;
259         __u64                   offset;
260         __u32                   count;
261         enum nfs3_stable_how    stable;
262         unsigned int            pgbase;
263         struct page **          pages;
264         const u32 *             bitmask;
265 };
266
267 struct nfs_writeverf {
268         enum nfs3_stable_how    committed;
269         __u32                   verifier[2];
270 };
271
272 struct nfs_writeres {
273         struct nfs_fattr *      fattr;
274         struct nfs_writeverf *  verf;
275         __u32                   count;
276         const struct nfs_server *server;
277 };
278
279 /*
280  * Argument struct for decode_entry function
281  */
282 struct nfs_entry {
283         __u64                   ino;
284         __u64                   cookie,
285                                 prev_cookie;
286         const char *            name;
287         unsigned int            len;
288         int                     eof;
289         struct nfs_fh *         fh;
290         struct nfs_fattr *      fattr;
291 };
292
293 /*
294  * The following types are for NFSv2 only.
295  */
296 struct nfs_sattrargs {
297         struct nfs_fh *         fh;
298         struct iattr *          sattr;
299 };
300
301 struct nfs_diropargs {
302         struct nfs_fh *         fh;
303         const char *            name;
304         unsigned int            len;
305 };
306
307 struct nfs_createargs {
308         struct nfs_fh *         fh;
309         const char *            name;
310         unsigned int            len;
311         struct iattr *          sattr;
312 };
313
314 struct nfs_renameargs {
315         struct nfs_fh *         fromfh;
316         const char *            fromname;
317         unsigned int            fromlen;
318         struct nfs_fh *         tofh;
319         const char *            toname;
320         unsigned int            tolen;
321 };
322
323 struct nfs_setattrargs {
324         struct nfs_fh *                 fh;
325         nfs4_stateid                    stateid;
326         struct iattr *                  iap;
327         const struct nfs_server *       server; /* Needed for name mapping */
328         const u32 *                     bitmask;
329 };
330
331 struct nfs_setaclargs {
332         struct nfs_fh *                 fh;
333         size_t                          acl_len;
334         unsigned int                    acl_pgbase;
335         struct page **                  acl_pages;
336 };
337
338 struct nfs_getaclargs {
339         struct nfs_fh *                 fh;
340         size_t                          acl_len;
341         unsigned int                    acl_pgbase;
342         struct page **                  acl_pages;
343 };
344
345 struct nfs_setattrres {
346         struct nfs_fattr *              fattr;
347         const struct nfs_server *       server;
348 };
349
350 struct nfs_linkargs {
351         struct nfs_fh *         fromfh;
352         struct nfs_fh *         tofh;
353         const char *            toname;
354         unsigned int            tolen;
355 };
356
357 struct nfs_symlinkargs {
358         struct nfs_fh *         fromfh;
359         const char *            fromname;
360         unsigned int            fromlen;
361         const char *            topath;
362         unsigned int            tolen;
363         struct iattr *          sattr;
364 };
365
366 struct nfs_readdirargs {
367         struct nfs_fh *         fh;
368         __u32                   cookie;
369         unsigned int            count;
370         struct page **          pages;
371 };
372
373 struct nfs3_getaclargs {
374         struct nfs_fh *         fh;
375         int                     mask;
376         struct page **          pages;
377 };
378
379 struct nfs3_setaclargs {
380         struct inode *          inode;
381         int                     mask;
382         struct posix_acl *      acl_access;
383         struct posix_acl *      acl_default;
384         struct page **          pages;
385 };
386
387 struct nfs_diropok {
388         struct nfs_fh *         fh;
389         struct nfs_fattr *      fattr;
390 };
391
392 struct nfs_readlinkargs {
393         struct nfs_fh *         fh;
394         unsigned int            pgbase;
395         unsigned int            pglen;
396         struct page **          pages;
397 };
398
399 struct nfs3_sattrargs {
400         struct nfs_fh *         fh;
401         struct iattr *          sattr;
402         unsigned int            guard;
403         struct timespec         guardtime;
404 };
405
406 struct nfs3_diropargs {
407         struct nfs_fh *         fh;
408         const char *            name;
409         unsigned int            len;
410 };
411
412 struct nfs3_accessargs {
413         struct nfs_fh *         fh;
414         __u32                   access;
415 };
416
417 struct nfs3_createargs {
418         struct nfs_fh *         fh;
419         const char *            name;
420         unsigned int            len;
421         struct iattr *          sattr;
422         enum nfs3_createmode    createmode;
423         __u32                   verifier[2];
424 };
425
426 struct nfs3_mkdirargs {
427         struct nfs_fh *         fh;
428         const char *            name;
429         unsigned int            len;
430         struct iattr *          sattr;
431 };
432
433 struct nfs3_symlinkargs {
434         struct nfs_fh *         fromfh;
435         const char *            fromname;
436         unsigned int            fromlen;
437         const char *            topath;
438         unsigned int            tolen;
439         struct iattr *          sattr;
440 };
441
442 struct nfs3_mknodargs {
443         struct nfs_fh *         fh;
444         const char *            name;
445         unsigned int            len;
446         enum nfs3_ftype         type;
447         struct iattr *          sattr;
448         dev_t                   rdev;
449 };
450
451 struct nfs3_renameargs {
452         struct nfs_fh *         fromfh;
453         const char *            fromname;
454         unsigned int            fromlen;
455         struct nfs_fh *         tofh;
456         const char *            toname;
457         unsigned int            tolen;
458 };
459
460 struct nfs3_linkargs {
461         struct nfs_fh *         fromfh;
462         struct nfs_fh *         tofh;
463         const char *            toname;
464         unsigned int            tolen;
465 };
466
467 struct nfs3_readdirargs {
468         struct nfs_fh *         fh;
469         __u64                   cookie;
470         __u32                   verf[2];
471         int                     plus;
472         unsigned int            count;
473         struct page **          pages;
474 };
475
476 struct nfs3_diropres {
477         struct nfs_fattr *      dir_attr;
478         struct nfs_fh *         fh;
479         struct nfs_fattr *      fattr;
480 };
481
482 struct nfs3_accessres {
483         struct nfs_fattr *      fattr;
484         __u32                   access;
485 };
486
487 struct nfs3_readlinkargs {
488         struct nfs_fh *         fh;
489         unsigned int            pgbase;
490         unsigned int            pglen;
491         struct page **          pages;
492 };
493
494 struct nfs3_renameres {
495         struct nfs_fattr *      fromattr;
496         struct nfs_fattr *      toattr;
497 };
498
499 struct nfs3_linkres {
500         struct nfs_fattr *      dir_attr;
501         struct nfs_fattr *      fattr;
502 };
503
504 struct nfs3_readdirres {
505         struct nfs_fattr *      dir_attr;
506         __u32 *                 verf;
507         int                     plus;
508 };
509
510 struct nfs3_getaclres {
511         struct nfs_fattr *      fattr;
512         int                     mask;
513         unsigned int            acl_access_count;
514         unsigned int            acl_default_count;
515         struct posix_acl *      acl_access;
516         struct posix_acl *      acl_default;
517 };
518
519 #ifdef CONFIG_NFS_V4
520
521 typedef u64 clientid4;
522
523 struct nfs4_accessargs {
524         const struct nfs_fh *           fh;
525         u32                             access;
526 };
527
528 struct nfs4_accessres {
529         u32                             supported;
530         u32                             access;
531 };
532
533 struct nfs4_create_arg {
534         u32                             ftype;
535         union {
536                 struct qstr *           symlink;    /* NF4LNK */
537                 struct {
538                         u32             specdata1;
539                         u32             specdata2;
540                 } device;    /* NF4BLK, NF4CHR */
541         } u;
542         const struct qstr *             name;
543         const struct nfs_server *       server;
544         const struct iattr *            attrs;
545         const struct nfs_fh *           dir_fh;
546         const u32 *                     bitmask;
547 };
548
549 struct nfs4_create_res {
550         const struct nfs_server *       server;
551         struct nfs_fh *                 fh;
552         struct nfs_fattr *              fattr;
553         struct nfs4_change_info         dir_cinfo;
554         struct nfs_fattr *              dir_fattr;
555 };
556
557 struct nfs4_fsinfo_arg {
558         const struct nfs_fh *           fh;
559         const u32 *                     bitmask;
560 };
561
562 struct nfs4_getattr_arg {
563         const struct nfs_fh *           fh;
564         const u32 *                     bitmask;
565 };
566
567 struct nfs4_getattr_res {
568         const struct nfs_server *       server;
569         struct nfs_fattr *              fattr;
570 };
571
572 struct nfs4_link_arg {
573         const struct nfs_fh *           fh;
574         const struct nfs_fh *           dir_fh;
575         const struct qstr *             name;
576         const u32 *                     bitmask;
577 };
578
579 struct nfs4_link_res {
580         const struct nfs_server *       server;
581         struct nfs_fattr *              fattr;
582         struct nfs4_change_info         cinfo;
583         struct nfs_fattr *              dir_attr;
584 };
585
586
587 struct nfs4_lookup_arg {
588         const struct nfs_fh *           dir_fh;
589         const struct qstr *             name;
590         const u32 *                     bitmask;
591 };
592
593 struct nfs4_lookup_res {
594         const struct nfs_server *       server;
595         struct nfs_fattr *              fattr;
596         struct nfs_fh *                 fh;
597 };
598
599 struct nfs4_lookup_root_arg {
600         const u32 *                     bitmask;
601 };
602
603 struct nfs4_pathconf_arg {
604         const struct nfs_fh *           fh;
605         const u32 *                     bitmask;
606 };
607
608 struct nfs4_readdir_arg {
609         const struct nfs_fh *           fh;
610         u64                             cookie;
611         nfs4_verifier                   verifier;
612         u32                             count;
613         struct page **                  pages;  /* zero-copy data */
614         unsigned int                    pgbase; /* zero-copy data */
615         const u32 *                     bitmask;
616 };
617
618 struct nfs4_readdir_res {
619         nfs4_verifier                   verifier;
620         unsigned int                    pgbase;
621 };
622
623 struct nfs4_readlink {
624         const struct nfs_fh *           fh;
625         unsigned int                    pgbase;
626         unsigned int                    pglen;   /* zero-copy data */
627         struct page **                  pages;   /* zero-copy data */
628 };
629
630 struct nfs4_remove_arg {
631         const struct nfs_fh *           fh;
632         const struct qstr *             name;
633         const u32 *                     bitmask;
634 };
635
636 struct nfs4_remove_res {
637         const struct nfs_server *       server;
638         struct nfs4_change_info         cinfo;
639         struct nfs_fattr *              dir_attr;
640 };
641
642 struct nfs4_rename_arg {
643         const struct nfs_fh *           old_dir;
644         const struct nfs_fh *           new_dir;
645         const struct qstr *             old_name;
646         const struct qstr *             new_name;
647         const u32 *                     bitmask;
648 };
649
650 struct nfs4_rename_res {
651         const struct nfs_server *       server;
652         struct nfs4_change_info         old_cinfo;
653         struct nfs_fattr *              old_fattr;
654         struct nfs4_change_info         new_cinfo;
655         struct nfs_fattr *              new_fattr;
656 };
657
658 struct nfs4_setclientid {
659         const nfs4_verifier *           sc_verifier;      /* request */
660         unsigned int                    sc_name_len;
661         char                            sc_name[48];      /* request */
662         u32                             sc_prog;          /* request */
663         unsigned int                    sc_netid_len;
664         char                            sc_netid[4];      /* request */
665         unsigned int                    sc_uaddr_len;
666         char                            sc_uaddr[24];     /* request */
667         u32                             sc_cb_ident;      /* request */
668 };
669
670 struct nfs4_statfs_arg {
671         const struct nfs_fh *           fh;
672         const u32 *                     bitmask;
673 };
674
675 struct nfs4_server_caps_res {
676         u32                             attr_bitmask[2];
677         u32                             acl_bitmask;
678         u32                             has_links;
679         u32                             has_symlinks;
680 };
681
682 struct nfs4_string {
683         unsigned int len;
684         char *data;
685 };
686
687 #define NFS4_PATHNAME_MAXCOMPONENTS 512
688 struct nfs4_pathname {
689         unsigned int ncomponents;
690         struct nfs4_string components[NFS4_PATHNAME_MAXCOMPONENTS];
691 };
692
693 #define NFS4_FS_LOCATION_MAXSERVERS 10
694 struct nfs4_fs_location {
695         unsigned int nservers;
696         struct nfs4_string servers[NFS4_FS_LOCATION_MAXSERVERS];
697         struct nfs4_pathname rootpath;
698 };
699
700 #define NFS4_FS_LOCATIONS_MAXENTRIES 10
701 struct nfs4_fs_locations {
702         struct nfs_fattr fattr;
703         const struct nfs_server *server;
704         struct nfs4_pathname fs_path;
705         int nlocations;
706         struct nfs4_fs_location locations[NFS4_FS_LOCATIONS_MAXENTRIES];
707 };
708
709 struct nfs4_fs_locations_arg {
710         const struct nfs_fh *dir_fh;
711         const struct qstr *name;
712         struct page *page;
713         const u32 *bitmask;
714 };
715
716 #endif /* CONFIG_NFS_V4 */
717
718 struct nfs_page;
719
720 #define NFS_PAGEVEC_SIZE        (8U)
721
722 struct nfs_read_data {
723         int                     flags;
724         struct rpc_task         task;
725         struct inode            *inode;
726         struct rpc_cred         *cred;
727         struct nfs_fattr        fattr;  /* fattr storage */
728         struct list_head        pages;  /* Coalesced read requests */
729         struct nfs_page         *req;   /* multi ops per nfs_page */
730         struct page             **pagevec;
731         unsigned int            npages; /* Max length of pagevec */
732         struct nfs_readargs args;
733         struct nfs_readres  res;
734 #ifdef CONFIG_NFS_V4
735         unsigned long           timestamp;      /* For lease renewal */
736 #endif
737         struct page             *page_array[NFS_PAGEVEC_SIZE];
738 };
739
740 struct nfs_write_data {
741         int                     flags;
742         struct rpc_task         task;
743         struct inode            *inode;
744         struct rpc_cred         *cred;
745         struct nfs_fattr        fattr;
746         struct nfs_writeverf    verf;
747         struct list_head        pages;          /* Coalesced requests we wish to flush */
748         struct nfs_page         *req;           /* multi ops per nfs_page */
749         struct page             **pagevec;
750         unsigned int            npages;         /* Max length of pagevec */
751         struct nfs_writeargs    args;           /* argument struct */
752         struct nfs_writeres     res;            /* result struct */
753 #ifdef CONFIG_NFS_V4
754         unsigned long           timestamp;      /* For lease renewal */
755 #endif
756         struct page             *page_array[NFS_PAGEVEC_SIZE];
757 };
758
759 struct nfs_access_entry;
760
761 /*
762  * RPC procedure vector for NFSv2/NFSv3 demuxing
763  */
764 struct nfs_rpc_ops {
765         int     version;                /* Protocol version */
766         struct dentry_operations *dentry_ops;
767         struct inode_operations *dir_inode_ops;
768         struct inode_operations *file_inode_ops;
769
770         int     (*getroot) (struct nfs_server *, struct nfs_fh *,
771                             struct nfs_fsinfo *);
772         int     (*lookupfh)(struct nfs_server *, struct nfs_fh *,
773                             struct qstr *, struct nfs_fh *,
774                             struct nfs_fattr *);
775         int     (*getattr) (struct nfs_server *, struct nfs_fh *,
776                             struct nfs_fattr *);
777         int     (*setattr) (struct dentry *, struct nfs_fattr *,
778                             struct iattr *);
779         int     (*lookup)  (struct inode *, struct qstr *,
780                             struct nfs_fh *, struct nfs_fattr *);
781         int     (*access)  (struct inode *, struct nfs_access_entry *);
782         int     (*readlink)(struct inode *, struct page *, unsigned int,
783                             unsigned int);
784         int     (*read)    (struct nfs_read_data *);
785         int     (*write)   (struct nfs_write_data *);
786         int     (*commit)  (struct nfs_write_data *);
787         int     (*create)  (struct inode *, struct dentry *,
788                             struct iattr *, int, struct nameidata *);
789         int     (*remove)  (struct inode *, struct qstr *);
790         int     (*unlink_setup)  (struct rpc_message *,
791                             struct dentry *, struct qstr *);
792         int     (*unlink_done) (struct dentry *, struct rpc_task *);
793         int     (*rename)  (struct inode *, struct qstr *,
794                             struct inode *, struct qstr *);
795         int     (*link)    (struct inode *, struct inode *, struct qstr *);
796         int     (*symlink) (struct inode *, struct qstr *, struct qstr *,
797                             struct iattr *, struct nfs_fh *,
798                             struct nfs_fattr *);
799         int     (*mkdir)   (struct inode *, struct dentry *, struct iattr *);
800         int     (*rmdir)   (struct inode *, struct qstr *);
801         int     (*readdir) (struct dentry *, struct rpc_cred *,
802                             u64, struct page *, unsigned int, int);
803         int     (*mknod)   (struct inode *, struct dentry *, struct iattr *,
804                             dev_t);
805         int     (*statfs)  (struct nfs_server *, struct nfs_fh *,
806                             struct nfs_fsstat *);
807         int     (*fsinfo)  (struct nfs_server *, struct nfs_fh *,
808                             struct nfs_fsinfo *);
809         int     (*pathconf) (struct nfs_server *, struct nfs_fh *,
810                              struct nfs_pathconf *);
811         int     (*set_capabilities)(struct nfs_server *, struct nfs_fh *);
812         u32 *   (*decode_dirent)(u32 *, struct nfs_entry *, int plus);
813         void    (*read_setup)   (struct nfs_read_data *);
814         int     (*read_done)  (struct rpc_task *, struct nfs_read_data *);
815         void    (*write_setup)  (struct nfs_write_data *, int how);
816         int     (*write_done)  (struct rpc_task *, struct nfs_write_data *);
817         void    (*commit_setup) (struct nfs_write_data *, int how);
818         int     (*commit_done) (struct rpc_task *, struct nfs_write_data *);
819         int     (*file_open)   (struct inode *, struct file *);
820         int     (*file_release) (struct inode *, struct file *);
821         int     (*lock)(struct file *, int, struct file_lock *);
822         void    (*clear_acl_cache)(struct inode *);
823 };
824
825 /*
826  *      NFS_CALL(getattr, inode, (fattr));
827  * into
828  *      NFS_PROTO(inode)->getattr(fattr);
829  */
830 #define NFS_CALL(op, inode, args)       NFS_PROTO(inode)->op args
831
832 /*
833  * Function vectors etc. for the NFS client
834  */
835 extern const struct nfs_rpc_ops nfs_v2_clientops;
836 extern const struct nfs_rpc_ops nfs_v3_clientops;
837 extern const struct nfs_rpc_ops nfs_v4_clientops;
838 extern struct rpc_version       nfs_version2;
839 extern struct rpc_version       nfs_version3;
840 extern struct rpc_version       nfs_version4;
841
842 extern struct rpc_version       nfsacl_version3;
843 extern struct rpc_program       nfsacl_program;
844
845 #endif