kernel: Adjust description for kern.tls_extra
[dragonfly.git] / sys / sys / vfsops.h
1 /*
2  * Copyright (c) 2004 The DragonFly Project.  All rights reserved.
3  *
4  * This code is derived from software contributed to The DragonFly Project
5  * by Matthew Dillon <dillon@backplane.com>
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in
15  *    the documentation and/or other materials provided with the
16  *    distribution.
17  * 3. Neither the name of The DragonFly Project nor the names of its
18  *    contributors may be used to endorse or promote products derived
19  *    from this software without specific, prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
25  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  */
34
35 /*
36  * The vop_ops structure vectors all access to a filesystem.  It contains a
37  * fixed set of vectors.
38  *
39  * In DragonFly the ultimate goal is to thread the VFS, which means that
40  * the dispatch functions will eventually be called from the context of
41  * a management thread rather then directly called by a process.  This
42  * requires us to divorce direct process dependancies (in particular ioctl
43  * and UIO's).  In addition, it is our intention to implement kernel
44  * level cache management and coherency in the vop_*() interfacing
45  * layer.
46  *
47  * The number of management threads will depend on the VFS.  The idea is
48  * to give a high performance VFS such as UFS at least one thread per cpu,
49  * and a low performance VFS such as CD9660 perhaps just one thread period.
50  * Blocking issues within the management thread are up to the VFS itself,
51  * but DragonFly will introduce a layer above the VFS to handle cacheable
52  * requests without having to enter the VFS (e.g. by making attribute
53  * and VM object information a permanent fixture of the vnode structure
54  * and accessing them directly).
55  *
56  * THE VOPOPS VECTORS SHOULD NEVER BE CALLED DIRECTLY!  Instead always use
57  * the kernel helper procedures vop_*() to call a vopop.  The kernel
58  * helper procedure will be responsible for handling the DragonFly messaging
59  * conversion when it occurs.
60  */
61
62 #ifndef _SYS_VFSOPS_H_
63 #define _SYS_VFSOPS_H_
64
65 #ifdef _KERNEL
66 #ifndef _SYS_ACL_H_
67 #include <sys/acl.h>
68 #endif
69 #ifndef _SYS_BUF_H_
70 #include <sys/buf.h>    /* buf_cmd_t */
71 #endif
72 #ifndef _SYS_FCNTL_H_
73 #include <sys/fcntl.h>  /* AT_EACCESS */
74 #endif
75
76 struct syslink_desc;
77 struct vnode;
78 struct thread;
79 struct nchandle;
80 struct componentname;
81 struct vattr;
82 struct ucred;
83 struct uio;
84 struct file;
85 struct knote;
86 struct vm_object;
87 struct vm_page;
88 struct vfscache;
89
90 struct vop_generic_args {
91         struct syslink_desc *a_desc;    /* command descriptor for the call */
92         struct vop_ops *a_ops;          /* operations vector for the call */
93         int a_reserved[4];
94 };
95
96 struct vop_old_lookup_args {
97         struct vop_generic_args a_head;
98         struct vnode *a_dvp;
99         struct vnode **a_vpp;
100         struct componentname *a_cnp;
101 };
102
103 struct vop_old_create_args {
104         struct vop_generic_args a_head;
105         struct vnode *a_dvp;
106         struct vnode **a_vpp;
107         struct componentname *a_cnp;
108         struct vattr *a_vap;
109 };
110
111 struct vop_old_whiteout_args {
112         struct vop_generic_args a_head;
113         struct vnode *a_dvp;
114         struct componentname *a_cnp;
115         int a_flags;
116 };
117
118 struct vop_old_mknod_args {
119         struct vop_generic_args a_head;
120         struct vnode *a_dvp;
121         struct vnode **a_vpp;
122         struct componentname *a_cnp;
123         struct vattr *a_vap;
124 };
125
126 struct vop_open_args {
127         struct vop_generic_args a_head;
128         struct vnode *a_vp;
129         int a_mode;
130         struct ucred *a_cred;
131         struct file *a_fp;              /* optional fp for fileops override */
132 };
133
134 struct vop_close_args {
135         struct vop_generic_args a_head;
136         struct vnode *a_vp;
137         int a_fflag;
138         struct file *a_fp;              /* optional fp for fileops override */
139 };
140
141 struct vop_access_args {
142         struct vop_generic_args a_head;
143         struct vnode *a_vp;
144         int a_mode;                             /* V* bitmask */
145         int a_flags;                            /* AT_* bitmask */
146         struct ucred *a_cred;
147 };
148
149 struct vop_getattr_args {
150         struct vop_generic_args a_head;
151         struct vnode *a_vp;
152         struct vattr *a_vap;
153         struct file *a_fp; /* FUSE */
154 };
155
156 struct vop_setattr_args {
157         struct vop_generic_args a_head;
158         struct vnode *a_vp;
159         struct vattr *a_vap;
160         struct ucred *a_cred;
161         struct file *a_fp; /* FUSE */
162 };
163
164 struct vop_read_args {
165         struct vop_generic_args a_head;
166         struct vnode *a_vp;
167         struct uio *a_uio;
168         int a_ioflag;
169         struct ucred *a_cred;
170         struct file *a_fp; /* FUSE */
171 };
172
173 struct vop_write_args {
174         struct vop_generic_args a_head;
175         struct vnode *a_vp;
176         struct uio *a_uio;
177         int a_ioflag;
178         struct ucred *a_cred;
179         struct file *a_fp; /* FUSE */
180 };
181
182 struct vop_ioctl_args {
183         struct vop_generic_args a_head;
184         struct vnode *a_vp;
185         u_long a_command;
186         caddr_t a_data;
187         int a_fflag;
188         struct ucred *a_cred;
189         struct sysmsg *a_sysmsg;
190 };
191
192 struct vop_poll_args {
193         struct vop_generic_args a_head;
194         struct vnode *a_vp;
195         int a_events;
196         struct ucred *a_cred;
197 };
198
199 struct vop_kqfilter_args {
200         struct vop_generic_args a_head;
201         struct vnode *a_vp;
202         struct knote *a_kn;
203 };
204
205 struct vop_mmap_args {
206         struct vop_generic_args a_head;
207         struct vnode *a_vp;
208         int a_fflags;
209         struct ucred *a_cred;
210 };
211
212 struct vop_fsync_args {
213         struct vop_generic_args a_head;
214         struct vnode *a_vp;
215         int a_waitfor;
216         int a_flags;
217         struct file *a_fp; /* FUSE */
218 };
219
220 struct vop_old_remove_args {
221         struct vop_generic_args a_head;
222         struct vnode *a_dvp;
223         struct vnode *a_vp;
224         struct componentname *a_cnp;
225 };
226
227 struct vop_old_link_args {
228         struct vop_generic_args a_head;
229         struct vnode *a_tdvp;
230         struct vnode *a_vp;
231         struct componentname *a_cnp;
232 };
233
234 struct vop_old_rename_args {
235         struct vop_generic_args a_head;
236         struct vnode *a_fdvp;
237         struct vnode *a_fvp;
238         struct componentname *a_fcnp;
239         struct vnode *a_tdvp;
240         struct vnode *a_tvp;
241         struct componentname *a_tcnp;
242 };
243
244 struct vop_old_mkdir_args {
245         struct vop_generic_args a_head;
246         struct vnode *a_dvp;
247         struct vnode **a_vpp;
248         struct componentname *a_cnp;
249         struct vattr *a_vap;
250 };
251
252 struct vop_old_rmdir_args {
253         struct vop_generic_args a_head;
254         struct vnode *a_dvp;
255         struct vnode *a_vp;
256         struct componentname *a_cnp;
257 };
258
259 struct vop_old_symlink_args {
260         struct vop_generic_args a_head;
261         struct vnode *a_dvp;
262         struct vnode **a_vpp;
263         struct componentname *a_cnp;
264         struct vattr *a_vap;
265         char *a_target;
266 };
267
268 struct vop_readdir_args {
269         struct vop_generic_args a_head;
270         struct vnode *a_vp;
271         struct uio *a_uio;
272         struct ucred *a_cred;
273         int *a_eofflag;
274         int *a_ncookies;
275         off_t **a_cookies;
276         struct file *a_fp; /* FUSE */
277 };
278
279 struct vop_readlink_args {
280         struct vop_generic_args a_head;
281         struct vnode *a_vp;
282         struct uio *a_uio;
283         struct ucred *a_cred;
284 };
285
286 struct vop_inactive_args {
287         struct vop_generic_args a_head;
288         struct vnode *a_vp;
289 };
290
291 struct vop_reclaim_args {
292         struct vop_generic_args a_head;
293         struct vnode *a_vp;
294 };
295
296 struct vop_bmap_args {
297         struct vop_generic_args a_head;
298         struct vnode *a_vp;
299         off_t a_loffset;
300         off_t *a_doffsetp;
301         int *a_runp;
302         int *a_runb;
303         buf_cmd_t a_cmd;        /* BUF_CMD_READ, BUF_CMD_WRITE, etc */
304 };
305
306 struct vop_strategy_args {
307         struct vop_generic_args a_head;
308         struct vnode *a_vp;
309         struct bio *a_bio;
310 };
311
312 struct vop_print_args {
313         struct vop_generic_args a_head;
314         struct vnode *a_vp;
315 };
316
317 struct vop_pathconf_args {
318         struct vop_generic_args a_head;
319         struct vnode *a_vp;
320         int a_name;
321         register_t *a_retval;
322 };
323
324 struct vop_advlock_args {
325         struct vop_generic_args a_head;
326         struct vnode *a_vp;
327         caddr_t a_id;
328         int a_op;
329         struct flock *a_fl;
330         int a_flags;
331 };
332
333 struct vop_balloc_args {
334         struct vop_generic_args a_head;
335         struct vnode *a_vp;
336         off_t a_startoffset;
337         int a_size;
338         struct ucred *a_cred;
339         int a_flags;
340         struct buf **a_bpp;
341 };
342
343 struct vop_reallocblks_args {
344         struct vop_generic_args a_head;
345         struct vnode *a_vp;
346         struct cluster_save *a_buflist;
347 };
348
349 struct vop_getpages_args {
350         struct vop_generic_args a_head;
351         struct vnode *a_vp;
352         struct vm_page **a_m;
353         int a_count;
354         int a_reqpage;
355         vm_ooffset_t a_offset;
356         int a_seqaccess;
357 };
358
359 struct vop_putpages_args {
360         struct vop_generic_args a_head;
361         struct vnode *a_vp;
362         struct vm_page **a_m;
363         int a_count;
364         int a_sync;
365         int *a_rtvals;
366         vm_ooffset_t a_offset;
367 };
368
369 struct vop_freeblks_args {
370         struct vop_generic_args a_head;
371         struct vnode *a_vp;
372         off_t a_offset;
373         int a_length;
374 };
375
376 struct vop_getacl_args {
377         struct vop_generic_args a_head;
378         struct vnode *a_vp;
379         acl_type_t a_type;
380         struct acl *a_aclp;
381         struct ucred *a_cred;
382 };
383
384 struct vop_setacl_args {
385         struct vop_generic_args a_head;
386         struct vnode *a_vp;
387         acl_type_t a_type;
388         struct acl *a_aclp;
389         struct ucred *a_cred;
390 };
391
392 struct vop_aclcheck_args {
393         struct vop_generic_args a_head;
394         struct vnode *a_vp;
395         acl_type_t a_type;
396         struct acl *a_aclp;
397         struct ucred *a_cred;
398 };
399
400 struct vop_getextattr_args {
401         struct vop_generic_args a_head;
402         struct vnode *a_vp;
403         int a_attrnamespace;
404         char *a_attrname;
405         struct uio *a_uio;
406         struct ucred *a_cred;
407 };
408
409 struct vop_setextattr_args {
410         struct vop_generic_args a_head;
411         struct vnode *a_vp;
412         int a_attrnamespace;
413         char *a_attrname;
414         struct uio *a_uio;
415         struct ucred *a_cred;
416 };
417
418 struct vop_mountctl_args {
419         struct vop_generic_args a_head;
420         int a_op;
421         struct file *a_fp;
422         const void *a_ctl;
423         int a_ctllen;
424         void *a_buf;
425         int a_buflen;
426         int *a_res;
427         struct vnode *a_vp;
428 };
429
430 struct vop_markatime_args {
431         struct vop_generic_args a_head;
432         int a_op;
433         struct vnode *a_vp;
434         struct ucred *a_cred;
435 };
436
437 /*
438  * NEW API
439  */
440
441 /*
442  * Warning: a_dvp is only held, not ref'd.  The target must still vget()
443  * it.
444  */
445 struct vop_nresolve_args {
446         struct vop_generic_args a_head;
447         struct nchandle *a_nch;
448         struct vnode *a_dvp;
449         struct ucred *a_cred;
450 };
451
452 struct vop_nlookupdotdot_args {
453         struct vop_generic_args a_head;
454         struct vnode *a_dvp;
455         struct vnode **a_vpp;
456         struct ucred *a_cred;
457         char **a_fakename;
458 };
459
460 /*
461  * Warning: a_dvp is only held, not ref'd.  The target must still vget()
462  * it.
463  */
464 struct vop_ncreate_args {
465         struct vop_generic_args a_head;
466         struct nchandle *a_nch;         /* locked namespace */
467         struct vnode *a_dvp;            /* held directory vnode */
468         struct vnode **a_vpp;           /* returned refd & locked */
469         struct ucred *a_cred;
470         struct vattr *a_vap;
471 };
472
473 /*
474  * Warning: a_dvp is only held, not ref'd.  The target must still vget()
475  * it.
476  */
477 struct vop_nmkdir_args {
478         struct vop_generic_args a_head;
479         struct nchandle *a_nch;         /* locked namespace */
480         struct vnode *a_dvp;
481         struct vnode **a_vpp;                   /* returned refd & locked */
482         struct ucred *a_cred;
483         struct vattr *a_vap;
484 };
485
486 /*
487  * Warning: a_dvp is only held, not ref'd.  The target must still vget()
488  * it.
489  */
490 struct vop_nmknod_args {
491         struct vop_generic_args a_head;
492         struct nchandle *a_nch;
493         struct vnode *a_dvp;
494         struct vnode **a_vpp;
495         struct ucred *a_cred;
496         struct vattr *a_vap;
497 };
498
499 /*
500  * Warning: a_dvp is only held, not ref'd.  The target must still vget()
501  * it.
502  */
503 struct vop_nlink_args {
504         struct vop_generic_args a_head;
505         struct nchandle *a_nch;
506         struct vnode *a_dvp;
507         struct vnode *a_vp;
508         struct ucred *a_cred;
509 };
510
511 /*
512  * Warning: a_dvp is only held, not ref'd.  The target must still vget()
513  * it.
514  */
515 struct vop_nsymlink_args {
516         struct vop_generic_args a_head;
517         struct nchandle *a_nch;
518         struct vnode *a_dvp;
519         struct vnode **a_vpp;
520         struct ucred *a_cred;
521         struct vattr *a_vap;
522         char *a_target;
523 };
524
525 /*
526  * Warning: a_dvp is only held, not ref'd.  The target must still vget()
527  * it.
528  */
529 struct vop_nwhiteout_args {
530         struct vop_generic_args a_head;
531         struct nchandle *a_nch;
532         struct vnode *a_dvp;
533         struct ucred *a_cred;
534         int a_flags;
535 };
536
537 /*
538  * Warning: a_dvp is only held, not ref'd.  The target must still vget()
539  * it.
540  */
541 struct vop_nremove_args {
542         struct vop_generic_args a_head;
543         struct nchandle *a_nch;         /* locked namespace */
544         struct vnode *a_dvp;
545         struct ucred *a_cred;
546 };
547
548 /*
549  * Warning: a_dvp is only held, not ref'd.  The target must still vget()
550  * it.
551  */
552 struct vop_nrmdir_args {
553         struct vop_generic_args a_head;
554         struct nchandle *a_nch;         /* locked namespace */
555         struct vnode *a_dvp;
556         struct ucred *a_cred;
557 };
558
559 /*
560  * Warning: a_fdvp and a_tdvp are only held, not ref'd.  The target must
561  * still vget() it.
562  */
563 struct vop_nrename_args {
564         struct vop_generic_args a_head;
565         struct nchandle *a_fnch;                /* locked namespace / from */
566         struct nchandle *a_tnch;                /* locked namespace / to */
567         struct vnode *a_fdvp;
568         struct vnode *a_tdvp;
569         struct ucred *a_cred;
570 };
571
572 /*
573  * This structure is the post-compiled VOP operations vector.  vop_ops are
574  * typically per-mount entities.  The first section is used by our vop_*()
575  * function wrappers to implement hooks for per-mount management functions
576  * such as journaling and cache coherency protocols.  The second section is
577  * the function dispatch for the VFSs.  The functions are supposed to run
578  * in the context of the VFS's thread (if it has one) and should not be
579  * directly called from random kernel code.  Note that VOCALL()s are direct
580  * calls used for chaining vop_ops structures from a VFS context.
581  */
582 struct vop_ops {
583         struct {
584                 struct mount    *vv_mount;
585         } head;
586
587 #define vop_ops_first_field     vop_default
588         int     (*vop_default)(struct vop_generic_args *);
589         int     (*vop_unused11)(void *);
590         int     (*vop_old_lookup)(struct vop_old_lookup_args *);
591         int     (*vop_unused03)(void *);
592         int     (*vop_old_create)(struct vop_old_create_args *);
593         int     (*vop_old_whiteout)(struct vop_old_whiteout_args *);
594         int     (*vop_old_mknod)(struct vop_old_mknod_args *);
595         int     (*vop_open)(struct vop_open_args *);
596         int     (*vop_close)(struct vop_close_args *);
597         int     (*vop_access)(struct vop_access_args *);
598         int     (*vop_getattr)(struct vop_getattr_args *);
599         int     (*vop_getattr_quick)(struct vop_getattr_args *);
600         int     (*vop_setattr)(struct vop_setattr_args *);
601         int     (*vop_read)(struct vop_read_args *);
602         int     (*vop_write)(struct vop_write_args *);
603         int     (*vop_unused04)(void *);
604         int     (*vop_ioctl)(struct vop_ioctl_args *);
605         int     (*vop_poll)(struct vop_poll_args *);
606         int     (*vop_kqfilter)(struct vop_kqfilter_args *);
607         int     (*vop_unused01)(void *);        /* was vop_revoke */
608         int     (*vop_mmap)(struct vop_mmap_args *);
609         int     (*vop_fsync)(struct vop_fsync_args *);
610         int     (*vop_old_remove)(struct vop_old_remove_args *);
611         int     (*vop_old_link)(struct vop_old_link_args *);
612         int     (*vop_old_rename)(struct vop_old_rename_args *);
613         int     (*vop_old_mkdir)(struct vop_old_mkdir_args *);
614         int     (*vop_old_rmdir)(struct vop_old_rmdir_args *);
615         int     (*vop_old_symlink)(struct vop_old_symlink_args *);
616         int     (*vop_readdir)(struct vop_readdir_args *);
617         int     (*vop_readlink)(struct vop_readlink_args *);
618         int     (*vop_inactive)(struct vop_inactive_args *);
619         int     (*vop_reclaim)(struct vop_reclaim_args *);
620         int     (*vop_unused09)(void *);
621         int     (*vop_unused10)(void *);
622         int     (*vop_bmap)(struct vop_bmap_args *);
623         int     (*vop_strategy)(struct vop_strategy_args *);
624         int     (*vop_print)(struct vop_print_args *);
625         int     (*vop_pathconf)(struct vop_pathconf_args *);
626         int     (*vop_advlock)(struct vop_advlock_args *);
627         int     (*vop_balloc)(struct vop_balloc_args *);
628         int     (*vop_reallocblks)(struct vop_reallocblks_args *);
629         int     (*vop_getpages)(struct vop_getpages_args *);
630         int     (*vop_putpages)(struct vop_putpages_args *);
631         int     (*vop_freeblks)(struct vop_freeblks_args *);
632         int     (*vop_unused05)(void *);
633         int     (*vop_getacl)(struct vop_getacl_args *);
634         int     (*vop_setacl)(struct vop_setacl_args *);
635         int     (*vop_aclcheck)(struct vop_aclcheck_args *);
636         int     (*vop_getextattr)(struct vop_getextattr_args *);
637         int     (*vop_setextattr)(struct vop_setextattr_args *);
638         int     (*vop_unused06)(void *);
639         int     (*vop_unused07)(void *);
640         int     (*vop_unused08)(void *);
641         int     (*vop_mountctl)(struct vop_mountctl_args *);
642         int     (*vop_markatime)(struct vop_markatime_args *);
643
644         int     (*vop_nresolve)(struct vop_nresolve_args *);
645         int     (*vop_nlookupdotdot)(struct vop_nlookupdotdot_args *);
646         int     (*vop_ncreate)(struct vop_ncreate_args *);
647         int     (*vop_nmkdir)(struct vop_nmkdir_args *);
648         int     (*vop_nmknod)(struct vop_nmknod_args *);
649         int     (*vop_nlink)(struct vop_nlink_args *);
650         int     (*vop_nsymlink)(struct vop_nsymlink_args *);
651         int     (*vop_nwhiteout)(struct vop_nwhiteout_args *);
652         int     (*vop_nremove)(struct vop_nremove_args *);
653         int     (*vop_nrmdir)(struct vop_nrmdir_args *);
654         int     (*vop_nrename)(struct vop_nrename_args *);
655 #define vop_ops_last_field      vop_nrename
656 };
657 #endif  /* _KERNEL */
658
659 /*
660  * vop_mountctl() operations
661  */
662 #define VFSSET_DETACH           0
663 #define VFSSET_ATTACH           1
664
665 /*
666  * Kernel VOP arguments union, suitable for malloc / embedding in other
667  * structures.  The vop_args_union can hold any VOP call argument structure.
668  * Note that vu_head is broken out.
669  */
670 #if 0
671 union vop_args_union {
672         struct vop_generic_args vu_head;
673         struct vop_generic_args vu_default;
674         struct vop_old_lookup_args vu_lookup;
675         struct vop_old_create_args vu_create;
676         struct vop_old_whiteout_args vu_whiteout;
677         struct vop_old_mknod_args vu_mknod;
678         struct vop_open_args vu_open;
679         struct vop_close_args vu_close;
680         struct vop_access_args vu_access;
681         struct vop_getattr_args vu_getattr;
682         struct vop_setattr_args vu_setattr;
683         struct vop_read_args vu_read;
684         struct vop_write_args vu_write;
685         struct vop_ioctl_args vu_ioctl;
686         struct vop_poll_args vu_poll;
687         struct vop_kqfilter_args vu_kqfilter;
688         struct vop_mmap_args vu_mmap;
689         struct vop_fsync_args vu_fsync;
690         struct vop_old_remove_args vu_remove;
691         struct vop_old_link_args vu_link;
692         struct vop_old_rename_args vu_rename;
693         struct vop_old_mkdir_args vu_mkdir;
694         struct vop_old_rmdir_args vu_rmdir;
695         struct vop_old_symlink_args vu_symlink;
696         struct vop_readdir_args vu_readdir;
697         struct vop_readlink_args vu_readlink;
698         struct vop_inactive_args vu_inactive;
699         struct vop_reclaim_args vu_reclaim;
700         struct vop_bmap_args vu_bmap;
701         struct vop_strategy_args vu_strategy;
702         struct vop_print_args vu_print;
703         struct vop_pathconf_args vu_pathconf;
704         struct vop_advlock_args vu_advlock;
705         struct vop_balloc_args vu_balloc;
706         struct vop_reallocblks_args vu_reallocblks;
707         struct vop_getpages_args vu_getpages;
708         struct vop_putpages_args vu_putpages;
709         struct vop_freeblks_args vu_freeblks;
710         struct vop_getacl_args vu_getacl;
711         struct vop_setacl_args vu_setacl;
712         struct vop_aclcheck_args vu_aclcheck;
713         struct vop_getextattr_args vu_getextattr;
714         struct vop_setextattr_args vu_setextattr;
715         struct vop_mountctl_args vu_mountctl;
716         struct vop_markatime_args vu_markatime;
717
718         struct vop_nresolve_args vu_nresolve;
719         struct vop_nlookupdotdot_args vu_nlookupdotdot;
720         struct vop_ncreate_args vu_ncreate;
721         struct vop_nmkdir_args vu_nmkdir;
722         struct vop_nmknod_args vu_nmknod;
723         struct vop_nlink_args vu_nlink;
724         struct vop_nsymlink_args vu_nsymlink;
725         struct vop_nwhiteout_args vu_nwhiteout;
726         struct vop_nremove_args vu_nremove;
727         struct vop_nrmdir_args vu_nrmdir;
728         struct vop_nrename_args vu_nrename;
729 };
730 #endif
731
732 #ifdef _KERNEL
733
734 /*
735  * Kernel VOP call wrappers.  These wrappers are responsible for wrapping
736  * the arguments in the appropriate VOP arguments structure, sending the
737  * message, and waiting for a reply.  All kernel and VFS code should generally
738  * call these wrappers rather then attempt to call the operations vector
739  * routine directly in order to allow DragonFly to properly wrap the operation
740  * in a message and dispatch it to the correct thread.
741  */
742 int vop_old_lookup(struct vop_ops *ops, struct vnode *dvp,
743                 struct vnode **vpp, struct componentname *cnp);
744 int vop_old_create(struct vop_ops *ops, struct vnode *dvp,
745                 struct vnode **vpp, struct componentname *cnp,
746                 struct vattr *vap);
747 int vop_old_whiteout(struct vop_ops *ops, struct vnode *dvp,
748                 struct componentname *cnp, int flags);
749 int vop_old_mknod(struct vop_ops *ops, struct vnode *dvp,
750                 struct vnode **vpp, struct componentname *cnp,
751                 struct vattr *vap);
752 int vop_open(struct vop_ops *ops, struct vnode *vp, int mode,
753                 struct ucred *cred, struct file *file);
754 int vop_close(struct vop_ops *ops, struct vnode *vp, int fflag,
755                 struct file *file);
756 int vop_access(struct vop_ops *ops, struct vnode *vp, int mode, int flags,
757                 struct ucred *cred);
758 int vop_getattr(struct vop_ops *ops, struct vnode *vp, struct vattr *vap,
759                 struct file *fp);
760 int vop_getattr_quick(struct vop_ops *ops, struct vnode *vp, struct vattr *vap);
761 int vop_setattr(struct vop_ops *ops, struct vnode *vp, struct vattr *vap,
762                 struct ucred *cred, struct file *fp);
763 int vop_read(struct vop_ops *ops, struct vnode *vp, struct uio *uio,
764                 int ioflag, struct ucred *cred, struct file *fp);
765 int vop_write(struct vop_ops *ops, struct vnode *vp, struct uio *uio,
766                 int ioflag, struct ucred *cred, struct file *fp);
767 int vop_ioctl(struct vop_ops *ops, struct vnode *vp, u_long command,
768                 caddr_t data, int fflag, struct ucred *cred,
769                 struct sysmsg *msg);
770 int vop_poll(struct vop_ops *ops, struct vnode *vp, int events,
771                 struct ucred *cred);
772 int vop_kqfilter(struct vop_ops *ops, struct vnode *vp, struct knote *kn);
773 int vop_mmap(struct vop_ops *ops, struct vnode *vp, int fflags,
774                 struct ucred *cred);
775 int vop_fsync(struct vop_ops *ops, struct vnode *vp, int waitfor, int flags,
776                 struct file *fp);
777 int vop_old_remove(struct vop_ops *ops, struct vnode *dvp,
778                 struct vnode *vp, struct componentname *cnp);
779 int vop_old_link(struct vop_ops *ops, struct vnode *tdvp,
780                 struct vnode *vp, struct componentname *cnp);
781 int vop_old_rename(struct vop_ops *ops, struct vnode *fdvp,
782                 struct vnode *fvp, struct componentname *fcnp,
783                 struct vnode *tdvp, struct vnode *tvp,
784                 struct componentname *tcnp);
785 int vop_old_mkdir(struct vop_ops *ops, struct vnode *dvp,
786                 struct vnode **vpp, struct componentname *cnp,
787                 struct vattr *vap);
788 int vop_old_rmdir(struct vop_ops *ops, struct vnode *dvp,
789                 struct vnode *vp, struct componentname *cnp);
790 int vop_old_symlink(struct vop_ops *ops, struct vnode *dvp,
791                 struct vnode **vpp, struct componentname *cnp,
792                 struct vattr *vap, char *target);
793 int vop_readdir(struct vop_ops *ops, struct vnode *vp, struct uio *uio,
794                 struct ucred *cred, int *eofflag,
795                 int *ncookies, off_t **cookies, struct file *fp);
796 int vop_readlink(struct vop_ops *ops, struct vnode *vp, struct uio *uio,
797                 struct ucred *cred);
798 int vop_inactive(struct vop_ops *ops, struct vnode *vp);
799 int vop_reclaim(struct vop_ops *ops, struct vnode *vp);
800 int vop_bmap(struct vop_ops *ops, struct vnode *vp, off_t loffset,
801                 off_t *doffsetp, int *runp, int *runb, buf_cmd_t cmd);
802 int vop_strategy(struct vop_ops *ops, struct vnode *vp, struct bio *bio);
803 int vop_print(struct vop_ops *ops, struct vnode *vp);
804 int vop_pathconf(struct vop_ops *ops, struct vnode *vp, int name,
805                 register_t *retval);
806 int vop_advlock(struct vop_ops *ops, struct vnode *vp, caddr_t id, int op,
807                 struct flock *fl, int flags);
808 int vop_balloc(struct vop_ops *ops, struct vnode *vp, off_t startoffset,
809                 int size, struct ucred *cred, int flags,
810                 struct buf **bpp);
811 int vop_reallocblks(struct vop_ops *ops, struct vnode *vp,
812                 struct cluster_save *buflist);
813 int vop_getpages(struct vop_ops *ops, struct vnode *vp, struct vm_page **m,
814                 int count, int reqpage, vm_ooffset_t offset, int seqaccess);
815 int vop_putpages(struct vop_ops *ops, struct vnode *vp, struct vm_page **m,
816                 int count, int sync, int *rtvals, vm_ooffset_t offset);
817 int vop_freeblks(struct vop_ops *ops, struct vnode *vp,
818                 off_t offset, int length);
819 int vop_getacl(struct vop_ops *ops, struct vnode *vp, acl_type_t type,
820                 struct acl *aclp, struct ucred *cred);
821 int vop_setacl(struct vop_ops *ops, struct vnode *vp, acl_type_t type,
822                 struct acl *aclp, struct ucred *cred);
823 int vop_aclcheck(struct vop_ops *ops, struct vnode *vp, acl_type_t type,
824                 struct acl *aclp, struct ucred *cred);
825
826 int vop_getextattr(struct vop_ops *ops, struct vnode *vp, int attrnamespace,
827                 char *attrname, struct uio *uio, struct ucred *cred);
828 int vop_setextattr(struct vop_ops *ops, struct vnode *vp, int attrnamespace,
829                 char *attrname, struct uio *uio, struct ucred *cred);
830 int vop_mountctl(struct vop_ops *ops, struct vnode *vp, int op,
831                 struct file *fp, const void *ctl, int ctllen,
832                 void *buf, int buflen, int *res);
833 int vop_markatime(struct vop_ops *ops, struct vnode *vp, struct ucred *cred);
834 int vop_nresolve(struct vop_ops *ops, struct nchandle *nch,
835                 struct vnode *dvp, struct ucred *cred);
836 int vop_nlookupdotdot(struct vop_ops *ops, struct vnode *dvp,
837                 struct vnode **vpp, struct ucred *cred, char **fakename);
838 int vop_ncreate(struct vop_ops *ops, struct nchandle *nch, struct vnode *dvp,
839                 struct vnode **vpp, struct ucred *cred, struct vattr *vap);
840 int vop_nmkdir(struct vop_ops *ops, struct nchandle *nch, struct vnode *dvp,
841                 struct vnode **vpp, struct ucred *cred, struct vattr *vap);
842 int vop_nmknod(struct vop_ops *ops, struct nchandle *nch, struct vnode *dvp,
843                 struct vnode **vpp, struct ucred *cred, struct vattr *vap);
844 int vop_nlink(struct vop_ops *ops, struct nchandle *nch, struct vnode *dvp,
845                 struct vnode *vp, struct ucred *cred);
846 int vop_nsymlink(struct vop_ops *ops, struct nchandle *nch, struct vnode *dvp,
847                 struct vnode **vpp, struct ucred *cred,
848                 struct vattr *vap, char *target);
849 int vop_nwhiteout(struct vop_ops *ops, struct nchandle *nch, struct vnode *dvp,
850                 struct ucred *cred, int flags);
851 int vop_nremove(struct vop_ops *ops, struct nchandle *nch, struct vnode *dvp,
852                 struct ucred *cred);
853 int vop_nrmdir(struct vop_ops *ops, struct nchandle *nch, struct vnode *dvp,
854                 struct ucred *cred);
855 int vop_nrename(struct vop_ops *ops,
856                 struct nchandle *fnch, struct nchandle *tnch,
857                 struct vnode *fdvp, struct vnode *tdvp,
858                 struct ucred *cred);
859
860 /*
861  * Kernel VOP forwarding wrappers.  These are called when a VFS such as
862  * nullfs needs to push down into another VFS, changing the
863  * a_ops pointer and consequentially necessitating additional
864  * cache management.
865  *
866  * Note that this is different from vop_ops chaining within the same
867  * filesystem.  When a filesystem chains a vop_ops it just uses VOCALLs.
868  */
869 int vop_vnoperate_ap(struct vop_generic_args *ap);
870 int vop_cache_operate_ap(struct vop_generic_args *ap);
871 int vop_journal_operate_ap(struct vop_generic_args *ap);
872 int vop_old_lookup_ap(struct vop_old_lookup_args *ap);
873 int vop_old_create_ap(struct vop_old_create_args *ap);
874 int vop_old_whiteout_ap(struct vop_old_whiteout_args *ap);
875 int vop_old_mknod_ap(struct vop_old_mknod_args *ap);
876 int vop_open_ap(struct vop_open_args *ap);
877 int vop_close_ap(struct vop_close_args *ap);
878 int vop_access_ap(struct vop_access_args *ap);
879 int vop_getattr_ap(struct vop_getattr_args *ap);
880 int vop_getattr_quick_ap(struct vop_getattr_args *ap);
881 int vop_setattr_ap(struct vop_setattr_args *ap);
882 int vop_read_ap(struct vop_read_args *ap);
883 int vop_write_ap(struct vop_write_args *ap);
884 int vop_ioctl_ap(struct vop_ioctl_args *ap);
885 int vop_poll_ap(struct vop_poll_args *ap);
886 int vop_kqfilter_ap(struct vop_kqfilter_args *ap);
887 int vop_mmap_ap(struct vop_mmap_args *ap);
888 int vop_fsync_ap(struct vop_fsync_args *ap);
889 int vop_old_remove_ap(struct vop_old_remove_args *ap);
890 int vop_old_link_ap(struct vop_old_link_args *ap);
891 int vop_old_rename_ap(struct vop_old_rename_args *ap);
892 int vop_old_mkdir_ap(struct vop_old_mkdir_args *ap);
893 int vop_old_rmdir_ap(struct vop_old_rmdir_args *ap);
894 int vop_old_symlink_ap(struct vop_old_symlink_args *ap);
895 int vop_readdir_ap(struct vop_readdir_args *ap);
896 int vop_readlink_ap(struct vop_readlink_args *ap);
897 int vop_inactive_ap(struct vop_inactive_args *ap);
898 int vop_reclaim_ap(struct vop_reclaim_args *ap);
899 int vop_bmap_ap(struct vop_bmap_args *ap);
900 int vop_strategy_ap(struct vop_strategy_args *ap);
901 int vop_print_ap(struct vop_print_args *ap);
902 int vop_pathconf_ap(struct vop_pathconf_args *ap);
903 int vop_advlock_ap(struct vop_advlock_args *ap);
904 int vop_balloc_ap(struct vop_balloc_args *ap);
905 int vop_reallocblks_ap(struct vop_reallocblks_args *ap);
906 int vop_getpages_ap(struct vop_getpages_args *ap);
907 int vop_putpages_ap(struct vop_putpages_args *ap);
908 int vop_freeblks_ap(struct vop_freeblks_args *ap);
909 int vop_getacl_ap(struct vop_getacl_args *ap);
910 int vop_setacl_ap(struct vop_setacl_args *ap);
911 int vop_aclcheck_ap(struct vop_aclcheck_args *ap);
912 int vop_getextattr_ap(struct vop_getextattr_args *ap);
913 int vop_setextattr_ap(struct vop_setextattr_args *ap);
914 int vop_mountctl_ap(struct vop_mountctl_args *ap);
915 int vop_markatime_ap(struct vop_markatime_args *ap);
916
917 int vop_nresolve_ap(struct vop_nresolve_args *ap);
918 int vop_nlookupdotdot_ap(struct vop_nlookupdotdot_args *ap);
919 int vop_ncreate_ap(struct vop_ncreate_args *ap);
920 int vop_nmkdir_ap(struct vop_nmkdir_args *ap);
921 int vop_nmknod_ap(struct vop_nmknod_args *ap);
922 int vop_nlink_ap(struct vop_nlink_args *ap);
923 int vop_nsymlink_ap(struct vop_nsymlink_args *ap);
924 int vop_nwhiteout_ap(struct vop_nwhiteout_args *ap);
925 int vop_nremove_ap(struct vop_nremove_args *ap);
926 int vop_nrmdir_ap(struct vop_nrmdir_args *ap);
927 int vop_nrename_ap(struct vop_nrename_args *ap);
928
929 /*
930  * VOP operations descriptor.  This is used by the vop_ops compiler
931  * to convert VFS vector arrays (typically in vfs/blah/blah_vnops.c)
932  * into a vop_ops operations vector.
933  */
934 extern struct syslink_desc vop_default_desc;
935 extern struct syslink_desc vop_old_lookup_desc;
936 extern struct syslink_desc vop_old_create_desc;
937 extern struct syslink_desc vop_old_whiteout_desc;
938 extern struct syslink_desc vop_old_mknod_desc;
939 extern struct syslink_desc vop_open_desc;
940 extern struct syslink_desc vop_close_desc;
941 extern struct syslink_desc vop_access_desc;
942 extern struct syslink_desc vop_getattr_desc;
943 extern struct syslink_desc vop_getattr_quick_desc;
944 extern struct syslink_desc vop_setattr_desc;
945 extern struct syslink_desc vop_read_desc;
946 extern struct syslink_desc vop_write_desc;
947 extern struct syslink_desc vop_ioctl_desc;
948 extern struct syslink_desc vop_poll_desc;
949 extern struct syslink_desc vop_kqfilter_desc;
950 extern struct syslink_desc vop_mmap_desc;
951 extern struct syslink_desc vop_fsync_desc;
952 extern struct syslink_desc vop_old_remove_desc;
953 extern struct syslink_desc vop_old_link_desc;
954 extern struct syslink_desc vop_old_rename_desc;
955 extern struct syslink_desc vop_old_mkdir_desc;
956 extern struct syslink_desc vop_old_rmdir_desc;
957 extern struct syslink_desc vop_old_symlink_desc;
958 extern struct syslink_desc vop_readdir_desc;
959 extern struct syslink_desc vop_readlink_desc;
960 extern struct syslink_desc vop_inactive_desc;
961 extern struct syslink_desc vop_reclaim_desc;
962 extern struct syslink_desc vop_bmap_desc;
963 extern struct syslink_desc vop_strategy_desc;
964 extern struct syslink_desc vop_print_desc;
965 extern struct syslink_desc vop_pathconf_desc;
966 extern struct syslink_desc vop_advlock_desc;
967 extern struct syslink_desc vop_balloc_desc;
968 extern struct syslink_desc vop_reallocblks_desc;
969 extern struct syslink_desc vop_getpages_desc;
970 extern struct syslink_desc vop_putpages_desc;
971 extern struct syslink_desc vop_freeblks_desc;
972 extern struct syslink_desc vop_getacl_desc;
973 extern struct syslink_desc vop_setacl_desc;
974 extern struct syslink_desc vop_aclcheck_desc;
975 extern struct syslink_desc vop_getextattr_desc;
976 extern struct syslink_desc vop_setextattr_desc;
977 extern struct syslink_desc vop_mountctl_desc;
978 extern struct syslink_desc vop_markatime_desc;
979
980 extern struct syslink_desc vop_nresolve_desc;
981 extern struct syslink_desc vop_nlookupdotdot_desc;
982 extern struct syslink_desc vop_ncreate_desc;
983 extern struct syslink_desc vop_nmkdir_desc;
984 extern struct syslink_desc vop_nmknod_desc;
985 extern struct syslink_desc vop_nlink_desc;
986 extern struct syslink_desc vop_nsymlink_desc;
987 extern struct syslink_desc vop_nwhiteout_desc;
988 extern struct syslink_desc vop_nremove_desc;
989 extern struct syslink_desc vop_nrmdir_desc;
990 extern struct syslink_desc vop_nrename_desc;
991
992 #endif  /* _KERNEL */
993
994 /*
995  * VOP_*() convenience macros extract the operations vector and make the
996  * vop_*() call.
997  */
998 #ifdef _KERNEL
999 #define VOP_OPEN(vp, mode, cred, fp)                    \
1000         vop_open(*(vp)->v_ops, vp, mode, cred, fp)
1001 #define VOP_CLOSE(vp, fflag, fp)                        \
1002         vop_close(*(vp)->v_ops, vp, fflag, fp)
1003 #define VOP_ACCESS(vp, mode, cred)                      \
1004         vop_access(*(vp)->v_ops, vp, mode, 0, cred)
1005 #define VOP_EACCESS(vp, mode, cred)                     \
1006         vop_access(*(vp)->v_ops, vp, mode, AT_EACCESS, cred)
1007 #define VOP_ACCESS_FLAGS(vp, mode, flags, cred)         \
1008         vop_access(*(vp)->v_ops, vp, mode, flags, cred)
1009 #define VOP_GETATTR_FP(vp, vap, fp)                     \
1010         vop_getattr(*(vp)->v_ops, vp, vap, fp) /* FUSE */
1011 #define VOP_GETATTR(vp, vap)                            \
1012         VOP_GETATTR_FP(vp, vap, NULL)
1013 #define VOP_GETATTR_QUICK(vp, vap)                      \
1014         vop_getattr_quick(*(vp)->v_ops, vp, vap)
1015 #define VOP_SETATTR_FP(vp, vap, cred, fp)               \
1016         vop_setattr(*(vp)->v_ops, vp, vap, cred, fp) /* FUSE */
1017 #define VOP_SETATTR(vp, vap, cred)                      \
1018         VOP_SETATTR_FP(vp, vap, cred, NULL)
1019 #define VOP_READ_FP(vp, uio, ioflag, cred, fp)          \
1020         vop_read(*(vp)->v_ops, vp, uio, ioflag, cred, fp) /* FUSE */
1021 #define VOP_READ(vp, uio, ioflag, cred)                 \
1022         VOP_READ_FP(vp, uio, ioflag, cred, NULL)
1023 #define VOP_WRITE_FP(vp, uio, ioflag, cred, fp)         \
1024         vop_write(*(vp)->v_ops, vp, uio, ioflag, cred, fp) /* FUSE */
1025 #define VOP_WRITE(vp, uio, ioflag, cred)                \
1026         VOP_WRITE_FP(vp, uio, ioflag, cred, NULL)
1027 #define VOP_IOCTL(vp, command, data, fflag, cred, msg)  \
1028         vop_ioctl(*(vp)->v_ops, vp, command, data, fflag, cred, msg)
1029 #define VOP_POLL(vp, events, cred)                      \
1030         vop_poll(*(vp)->v_ops, vp, events, cred)
1031 #define VOP_KQFILTER(vp, kn)                            \
1032         vop_kqfilter(*(vp)->v_ops, vp, kn)
1033 #define VOP_MMAP(vp, fflags, cred)                      \
1034         vop_mmap(*(vp)->v_ops, vp, fflags, cred)
1035 #define VOP_FSYNC_FP(vp, waitfor, flags, fp)            \
1036         vop_fsync(*(vp)->v_ops, vp, waitfor, flags, fp) /* FUSE*/
1037 #define VOP_FSYNC(vp, waitfor, flags)                   \
1038         VOP_FSYNC_FP(vp, waitfor, flags, NULL)
1039 #define VOP_READDIR_FP(vp, uio, cred, eofflag, ncookies, cookies, fp)   \
1040         vop_readdir(*(vp)->v_ops, vp, uio, cred, eofflag, ncookies, cookies, fp) /* FUSE */
1041 #define VOP_READDIR(vp, uio, cred, eofflag, ncookies, cookies)          \
1042         VOP_READDIR_FP(vp, uio, cred, eofflag, ncookies, cookies, NULL)
1043 #define VOP_READLINK(vp, uio, cred)                     \
1044         vop_readlink(*(vp)->v_ops, vp, uio, cred)
1045 #define VOP_INACTIVE(vp)                                \
1046         vop_inactive(*(vp)->v_ops, vp)
1047 #define VOP_RECLAIM(vp)                                 \
1048         vop_reclaim(*(vp)->v_ops, vp)
1049 #define VOP_BMAP(vp, loff, doffp, runp, runb, cmd)      \
1050         vop_bmap(*(vp)->v_ops, vp, loff, doffp, runp, runb, cmd)
1051 #define VOP_PRINT(vp)                                   \
1052         vop_print(*(vp)->v_ops, vp)
1053 #define VOP_PATHCONF(vp, name, retval)                  \
1054         vop_pathconf(*(vp)->v_ops, vp, name, retval)
1055 #define VOP_ADVLOCK(vp, id, op, fl, flags)              \
1056         vop_advlock(*(vp)->v_ops, vp, id, op, fl, flags)
1057 #define VOP_BALLOC(vp, offset, size, cred, flags, bpp)  \
1058         vop_balloc(*(vp)->v_ops, vp, offset, size, cred, flags, bpp)
1059 #define VOP_REALLOCBLKS(vp, buflist)                    \
1060         vop_reallocblks(*(vp)->v_ops, vp, buflist)
1061 #define VOP_GETPAGES(vp, m, count, reqpage, off, seqaccess)             \
1062         vop_getpages(*(vp)->v_ops, vp, m, count, reqpage, off, seqaccess)
1063 #define VOP_PUTPAGES(vp, m, count, sync, rtvals, off)   \
1064         vop_putpages(*(vp)->v_ops, vp, m, count, sync, rtvals, off)
1065 #define VOP_FREEBLKS(vp, offset, length)                \
1066         vop_freeblks(*(vp)->v_ops, vp, offset, length)
1067 #define VOP_GETACL(vp, type, aclp, cred)                \
1068         vop_getacl(*(vp)->v_ops, vp, type, aclp, cred)
1069 #define VOP_SETACL(vp, type, aclp, cred)                \
1070         vop_setacl(*(vp)->v_ops, vp, type, aclp, cred)
1071 #define VOP_ACLCHECK(vp, type, aclp, cred)              \
1072         vop_aclcheck(*(vp)->v_ops, vp, type, aclp, cred)
1073 #define VOP_GETEXTATTR(vp, attrnamespace, attrname, uio, cred) \
1074         vop_getextattr(*(vp)->v_ops, vp, attrnamespace, attrname, uio, cred)
1075 #define VOP_SETEXTATTR(vp, attrnamespace, attrname, uio, cred)  \
1076         vop_setextattr(*(vp)->v_ops, vp, attrnamespace, attrname, uio, cred)
1077 #define VOP_MARKATIME(vp, cred)                 \
1078         vop_markatime(*(vp)->v_ops, vp, cred)
1079 /* no VOP_VFSSET() */
1080 /* VOP_STRATEGY - does not exist, use vn_strategy() */
1081
1082 /*
1083  * 'OLD' VOP calls.  These calls may only be made by the new API
1084  * compatibility functions in kern/vfs_default.c.  Attempting to
1085  * call these functions directly will confuse the namecache.  These
1086  * calls are deprecated and being removed from the system and from
1087  * the VFS's.
1088  */
1089 #define VOP_OLD_LOOKUP(dvp, vpp, cnp)                   \
1090         vop_old_lookup(*(dvp)->v_ops, dvp, vpp, cnp)
1091 #define VOP_OLD_CREATE(dvp, vpp, cnp, vap)              \
1092         vop_old_create(*(dvp)->v_ops, dvp, vpp, cnp, vap)
1093 #define VOP_OLD_MKDIR(dvp, vpp, cnp, vap)               \
1094         vop_old_mkdir(*(dvp)->v_ops, dvp, vpp, cnp, vap)
1095 #define VOP_OLD_MKNOD(dvp, vpp, cnp, vap)               \
1096         vop_old_mknod(*(dvp)->v_ops, dvp, vpp, cnp, vap)
1097 #define VOP_OLD_LINK(tdvp, vp, cnp)                     \
1098         vop_old_link(*(tdvp)->v_ops, tdvp, vp, cnp)
1099 #define VOP_OLD_SYMLINK(dvp, vpp, cnp, vap, target)     \
1100         vop_old_symlink(*(dvp)->v_ops, dvp, vpp, cnp, vap, target)
1101 #define VOP_OLD_WHITEOUT(dvp, cnp, flags)               \
1102         vop_old_whiteout(*(dvp)->v_ops, dvp, cnp, flags)
1103 #define VOP_OLD_RENAME(fdvp, fvp, fcnp, tdvp, tvp, tcnp) \
1104         vop_old_rename(*(fdvp)->v_ops, fdvp, fvp, fcnp, tdvp, tvp, tcnp)
1105 #define VOP_OLD_RMDIR(dvp, vp, cnp)                     \
1106         vop_old_rmdir(*(dvp)->v_ops, dvp, vp, cnp)
1107 #define VOP_OLD_REMOVE(dvp, vp, cnp)                    \
1108         vop_old_remove(*(dvp)->v_ops, dvp, vp, cnp)
1109
1110 /*
1111  * 'NEW' VOP calls.  These calls use namespaces as an operational basis
1112  * rather then vnodes and replace the OLD calls.   Eventually all VFS's
1113  * will support these calls.  Those that do not fall through to compatibility
1114  * code in kern/vfs_default which does the magic required to call the old
1115  * routines.
1116  */
1117 #define VOP_NRESOLVE(nch, dvp, cred)                    \
1118         vop_nresolve((nch)->mount->mnt_vn_use_ops, nch, dvp, cred)
1119 #define VOP_NLOOKUPDOTDOT(dvp, vpp, cred, fakename)     \
1120         vop_nlookupdotdot(*(dvp)->v_ops, dvp, vpp, cred, fakename)
1121 #define VOP_NCREATE(nch, dvp, vpp, cred, vap)           \
1122         vop_ncreate((nch)->mount->mnt_vn_use_ops, nch, dvp, vpp, cred, vap)
1123 #define VOP_NMKDIR(nch, dvp, vpp, cred, vap)            \
1124         vop_nmkdir((nch)->mount->mnt_vn_use_ops, nch, dvp, vpp, cred, vap)
1125 #define VOP_NMKNOD(nch, dvp, vpp, cred, vap)            \
1126         vop_nmknod((nch)->mount->mnt_vn_use_ops, nch, dvp, vpp, cred, vap)
1127 #define VOP_NLINK(nch, dvp, vp, cred)                   \
1128         vop_nlink((nch)->mount->mnt_vn_use_ops, nch, dvp, vp, cred)
1129 #define VOP_NSYMLINK(nch, dvp, vpp, cred, vap, target)  \
1130         vop_nsymlink((nch)->mount->mnt_vn_use_ops, nch, dvp, vpp, cred, vap, target)
1131 #define VOP_NWHITEOUT(nch, dvp, cred, flags)            \
1132         vop_nwhiteout((nch)->mount->mnt_vn_use_ops, nch, dvp, cred, flags)
1133 #define VOP_NRENAME(fnch, tnch, fdvp, tdvp, cred)               \
1134         vop_nrename((fnch)->mount->mnt_vn_use_ops, fnch, tnch, fdvp, tdvp, cred)
1135 #define VOP_NRMDIR(nch, dvp, cred)                      \
1136         vop_nrmdir((nch)->mount->mnt_vn_use_ops, nch, dvp, cred)
1137 #define VOP_NREMOVE(nch, dvp, cred)                     \
1138         vop_nremove((nch)->mount->mnt_vn_use_ops, nch, dvp, cred)
1139 #endif  /* _KERNEL */
1140
1141 #endif  /* !_SYS_VFSOPS_H_ */
1142