make.1: We use bmake.1, not make.1.
[dragonfly.git] / sys / sys / vnode.h
1 /*
2  * Copyright (c) 1989, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  *      @(#)vnode.h     8.7 (Berkeley) 2/4/94
34  * $FreeBSD: src/sys/sys/vnode.h,v 1.111.2.19 2002/12/29 18:19:53 dillon Exp $
35  */
36
37 #ifndef _SYS_VNODE_H_
38 #define _SYS_VNODE_H_
39
40 #if defined(_KERNEL) || defined(_KERNEL_STRUCTURES)
41
42 #ifndef _SYS_QUEUE_H_
43 #include <sys/queue.h>
44 #endif
45 #ifndef _SYS_LOCK_H_
46 #include <sys/lock.h>
47 #endif
48 #ifndef _SYS_EVENT_H_
49 #include <sys/event.h>
50 #endif
51 #ifndef _SYS_BIOTRACK_H_
52 #include <sys/biotrack.h>
53 #endif
54 #ifndef _SYS_UIO_H_
55 #include <sys/uio.h>
56 #endif
57 #ifndef _SYS_ACL_H_
58 #include <sys/acl.h>
59 #endif
60 #ifndef _SYS_NAMECACHE_H_
61 #include <sys/namecache.h>
62 #endif
63 #ifndef _SYS_THREAD_H_
64 #include <sys/thread.h>
65 #endif
66 #ifndef _SYS_VFSOPS_H_
67 #include <sys/vfsops.h>
68 #endif
69 #ifndef _SYS_VFSCACHE_H_
70 #include <sys/vfscache.h>
71 #endif
72 #ifndef _SYS_TREE_H_
73 #include <sys/tree.h>
74 #endif
75 #ifndef _SYS_SYSLINK_RPC_H_
76 #include <sys/syslink_rpc.h>
77 #endif
78 #ifndef _SYS_SYSREF_H_
79 #include <sys/sysref.h>
80 #endif
81 #ifndef _MACHINE_LOCK_H_
82 #include <machine/lock.h>
83 #endif
84
85 /*
86  * The vnode is the focus of all file activity in UNIX.  There is a
87  * unique vnode allocated for each active file, each current directory,
88  * each mounted-on file, text file, and the root.
89  */
90
91 /*
92  * Each underlying filesystem allocates its own private area and hangs
93  * it from v_data.  If non-null, this area is freed in getnewvnode().
94  */
95 TAILQ_HEAD(buflists, buf);
96
97 /*
98  * Struct for mount options to printable formats.
99  */
100 struct mountctl_opt {
101         int             o_opt;
102         const char      *o_name;
103 };
104
105 /*
106  * The vnode infrastructure is being reorgranized.  Most reference-related
107  * fields are locked by the BGL, and most file I/O related operations and
108  * vnode teardown functions are locked by the vnode lock.
109  *
110  * File read operations require a shared lock, file write operations require
111  * an exclusive lock.  Most directory operations (read or write) currently
112  * require an exclusive lock due to the side effects stored in the directory
113  * inode (which we intend to fix).
114  *
115  * File reads and writes are further protected by a range lock.  The intention
116  * is to be able to break I/O operations down into more easily managed pieces
117  * so vm_page arrays can be passed through rather then UIOs.  This work will
118  * occur in multiple stages.  The range locks will also eventually be used to
119  * deal with clustered cache coherency issues and, more immediately, to
120  * protect operations associated with the kernel-managed journaling module.
121  *
122  * NOTE: Certain fields within the vnode structure requires v_token to be
123  *       held.  The vnode's normal lock need not be held when accessing
124  *       these fields as long as the vnode is deterministically referenced
125  *       (i.e. can't be ripped out from under the caller).  This is typical
126  *       for code paths based on descriptors or file pointers, but not for
127  *       backdoor code paths that come in via the buffer cache.
128  *
129  *      v_rbclean_tree
130  *      v_rbdirty_tree
131  *      v_rbhash_tree
132  *      v_pollinfo
133  *
134  * NOTE: The vnode operations vector, v_ops, is a double-indirect that
135  *       typically points to &v_mount->mnt_vn_use_ops.  We use a double
136  *       pointer because mnt_vn_use_ops may change dynamically when e.g.
137  *       journaling is turned on or off.
138  *
139  * NOTE: v_filesize is currently only applicable when a VM object is
140  *       associated with the vnode.  Otherwise it will be set to NOOFFSET.
141  *
142  * NOTE: The following fields require a spin or token lock.  Note that
143  *       additional subsystems may use v_token or v_spin for other
144  *       purposes, e.g. vfs/fifofs/fifo_vnops.c
145  *
146  *       v_namecache    v_spin
147  *       v_rb*          v_token
148  */
149 RB_HEAD(buf_rb_tree, buf);
150 RB_HEAD(buf_rb_hash, buf);
151
152 struct vnode {
153         struct spinlock v_spin;
154         int     v_flag;                         /* vnode flags (see below) */
155         int     v_writecount;
156         int     v_opencount;                    /* number of explicit opens */
157         int     v_auxrefs;                      /* auxiliary references */
158         struct sysref v_sysref;                 /* normal references */
159         struct bio_track v_track_read;          /* track I/O's in progress */
160         struct bio_track v_track_write;         /* track I/O's in progress */
161         struct mount *v_mount;                  /* ptr to vfs we are in */
162         struct vop_ops **v_ops;                 /* vnode operations vector */
163         TAILQ_ENTRY(vnode) v_freelist;          /* vnode freelist/cachelist */
164         TAILQ_ENTRY(vnode) v_nmntvnodes;        /* vnodes for mount point */
165         struct buf_rb_tree v_rbclean_tree;      /* RB tree of clean bufs */
166         struct buf_rb_tree v_rbdirty_tree;      /* RB tree of dirty bufs */
167         struct buf_rb_hash v_rbhash_tree;       /* RB tree general lookup */
168         LIST_ENTRY(vnode) v_synclist;           /* vnodes with dirty buffers */
169         enum    vtype v_type;                   /* vnode type */
170         union {
171                 struct socket   *vu_socket;     /* unix ipc (VSOCK) */
172                 struct {
173                         int     vu_umajor;      /* device number for attach */
174                         int     vu_uminor;
175                         struct cdev     *vu_cdevinfo; /* device (VCHR, VBLK) */
176                         SLIST_ENTRY(vnode) vu_cdevnext;
177                 } vu_cdev;
178                 struct fifoinfo *vu_fifoinfo;   /* fifo (VFIFO) */
179         } v_un;
180         off_t   v_filesize;                     /* file EOF or NOOFFSET */
181         off_t   v_lazyw;                        /* lazy write iterator */
182         off_t   v_lastw;                        /* last write (write cluster) */
183         off_t   v_cstart;                       /* start block of cluster */
184         off_t   v_lasta;                        /* last allocation */
185         int     v_clen;                         /* length of current cluster */
186         struct vm_object *v_object;             /* Place to store VM object */
187         struct  lock v_lock;                    /* file/dir ops lock */
188         struct  lwkt_token v_token;             /* (see above) */
189         enum    vtagtype v_tag;                 /* type of underlying data */
190         void    *v_data;                        /* private data for fs */
191         struct namecache_list v_namecache;      /* (S) associated nc entries */
192         struct  {
193                 struct  kqinfo vpi_kqinfo;      /* identity of poller(s) */
194         } v_pollinfo;
195         struct vmresident *v_resident;          /* optional vmresident */
196         struct mount *v_pfsmp;                  /* real mp for pfs/nullfs mt */
197 #ifdef  DEBUG_LOCKS
198         const char *filename;                   /* Source file doing locking */
199         int line;                               /* Line number doing locking */
200 #endif
201 };
202 #define v_socket        v_un.vu_socket
203 #define v_umajor        v_un.vu_cdev.vu_umajor
204 #define v_uminor        v_un.vu_cdev.vu_uminor
205 #define v_rdev          v_un.vu_cdev.vu_cdevinfo
206 #define v_cdevnext      v_un.vu_cdev.vu_cdevnext
207 #define v_fifoinfo      v_un.vu_fifoinfo
208
209 /*
210  * Vnode flags.
211  */
212 #define VROOT           0x00000001      /* root of its file system */
213 #define VTEXT           0x00000002      /* vnode is a pure text prototype */
214 #define VSYSTEM         0x00000004      /* vnode being used by kernel */
215 #define VISTTY          0x00000008      /* vnode represents a tty */
216 #define VCTTYISOPEN     0x00000010      /* controlling terminal tty is open */
217 #define VCKPT           0x00000020      /* checkpoint-restored vnode */
218 /* open for business    0x00000040 */
219 #define VMAYHAVELOCKS   0x00000080      /* maybe posix or flock locks on vp */
220 #define VPFSROOT        0x00000100      /* may be a pseudo filesystem root */
221 /* open for business    0x00000200 */
222 #define VAGE0           0x00000400      /* Age count for recycling - 2 bits */
223 #define VAGE1           0x00000800      /* Age count for recycling - 2 bits */
224 #define VCACHED         0x00001000      /* No active references but has cache value */
225 #define VOBJBUF         0x00002000      /* Allocate buffers in VM object */
226 #define VINACTIVE       0x00004000      /* The vnode is inactive (did VOP_INACTIVE) */
227 /* open for business    0x00008000 */
228 #define VOLOCK          0x00010000      /* vnode is locked waiting for an object */
229 #define VOWANT          0x00020000      /* a process is waiting for VOLOCK */
230 #define VRECLAIMED      0x00040000      /* This vnode has been destroyed */
231 #define VFREE           0x00080000      /* This vnode is on the freelist */
232 #define VNOTSEEKABLE    0x00100000      /* rd/wr ignores file offset */
233 #define VONWORKLST      0x00200000      /* On syncer work-list */
234 #define VISDIRTY        0x00400000      /* inode dirty from VFS */
235 #define VOBJDIRTY       0x00800000      /* object might be dirty */
236 #define VSWAPCACHE      0x01000000      /* enable swapcache */
237 /* open for business    0x02000000 */
238 /* open for business    0x04000000 */
239
240 /*
241  * vmntvnodescan() flags
242  */
243 #define VMSC_GETVP      0x01
244 #define VMSC_GETVX      0x02
245 #define VMSC_NOWAIT     0x10
246 #define VMSC_ONEPASS    0x20
247
248 /*
249  * Flags for ioflag. (high 16 bits used to ask for read-ahead and
250  * help with write clustering)
251  */
252 #define IO_UNIT         0x0001          /* do I/O as atomic unit */
253 #define IO_APPEND       0x0002          /* append write to end */
254 #define IO_SYNC         0x0004          /* do I/O synchronously */
255 #define IO_NODELOCKED   0x0008          /* underlying node already locked */
256 #define IO_NDELAY       0x0010          /* FNDELAY flag set in file table */
257 #define IO_VMIO         0x0020          /* data already in VMIO space */
258 #define IO_INVAL        0x0040          /* invalidate after I/O */
259 #define IO_ASYNC        0x0080          /* bawrite rather then bdwrite */
260 #define IO_DIRECT       0x0100          /* attempt to bypass buffer cache */
261 #define IO_RECURSE      0x0200          /* possibly device-recursive (vn) */
262 #define IO_CORE         0x0400          /* I/O is part of core dump */
263 #define IO_NRDELAY      0x0800          /* do not block on disk reads */
264
265 #define IO_SEQMAX       0x7F            /* seq heuristic max value */
266 #define IO_SEQSHIFT     16              /* seq heuristic in upper 16 bits */
267
268 /*
269  * Modes.  Note that these V-modes must match file S_I*USR, SUID, SGID,
270  * and SVTX flag bits.
271  */
272 #define VSUID   04000           /* set user id on execution */
273 #define VSGID   02000           /* set group id on execution */
274 #define VSVTX   01000           /* save swapped text even after use */
275 #define VREAD   00400           /* read, write, execute permissions */
276 #define VWRITE  00200
277 #define VEXEC   00100
278
279 /*
280  * Token indicating no attribute value yet assigned.
281  */
282 #define VNOVAL  (-1)
283
284 /*
285  * LK_TIMELOCK timeout for vnode locks (used mainly by the pageout daemon)
286  */
287 #define VLKTIMEOUT     (hz / 20 + 1)
288
289 #ifdef _KERNEL
290
291 /*
292  * Convert between vnode types and inode formats (since POSIX.1
293  * defines mode word of stat structure in terms of inode formats).
294  */
295 extern  enum vtype      iftovt_tab[];
296 extern  int             vttoif_tab[];
297 #define IFTOVT(mode)    (iftovt_tab[((mode) & S_IFMT) >> 12])
298 #define VTTOIF(indx)    (vttoif_tab[(int)(indx)])
299 #define MAKEIMODE(indx, mode)   (int)(VTTOIF(indx) | (mode))
300
301 /*
302  * Flags to various vnode functions.
303  */
304 #define SKIPSYSTEM      0x0001          /* vflush: skip vnodes marked VSYSTEM */
305 #define FORCECLOSE      0x0002          /* vflush: force file closure */
306 #define WRITECLOSE      0x0004          /* vflush: only close writable files */
307 #define DOCLOSE         0x0008          /* vclean: close active files */
308 #define V_SAVE          0x0001          /* vinvalbuf: sync file first */
309
310 #ifdef DIAGNOSTIC
311 #define VATTR_NULL(vap) vattr_null(vap)
312 #else
313 #define VATTR_NULL(vap) (*(vap) = va_null)      /* initialize a vattr */
314 #endif /* DIAGNOSTIC */
315
316 #define NULLVP  ((struct vnode *)NULL)
317
318 #define VNODEOP_SET(f) \
319         SYSINIT(f##init, SI_SUB_VFS, SI_ORDER_SECOND, vfs_nadd_vnodeops_sysinit, &f); \
320         SYSUNINIT(f##uninit, SI_SUB_VFS, SI_ORDER_SECOND,vfs_nrm_vnodeops_sysinit, &f);
321
322 /*
323  * Global vnode data.
324  */
325 struct objcache;
326
327 extern  struct vnode *rootvnode;        /* root (i.e. "/") vnode */
328 extern  struct nchandle rootnch;        /* root (i.e. "/") namecache */
329 extern  int desiredvnodes;              /* number of vnodes desired */
330 extern  time_t syncdelay;               /* max time to delay syncing data */
331 extern  time_t filedelay;               /* time to delay syncing files */
332 extern  time_t dirdelay;                /* time to delay syncing directories */
333 extern  time_t metadelay;               /* time to delay syncing metadata */
334 extern  struct objcache *namei_oc;
335 extern  int prtactive;                  /* nonzero to call vprint() */
336 extern  struct vattr va_null;           /* predefined null vattr structure */
337 extern  int numvnodes;
338 extern  int freevnodes;
339
340 /*
341  * This macro is very helpful in defining those offsets in the vdesc struct.
342  *
343  * This is stolen from X11R4.  I ignored all the fancy stuff for
344  * Crays, so if you decide to port this to such a serious machine,
345  * you might want to consult Intrinsic.h's XtOffset{,Of,To}.
346  */
347 #define VOPARG_OFFSET(p_type,field) \
348         ((int) (((char *) (&(((p_type)NULL)->field))) - ((char *) NULL)))
349 #define VOPARG_OFFSETOF(s_type,field) \
350         VOPARG_OFFSET(s_type*,field)
351 #define VOPARG_OFFSETTO(S_TYPE,S_OFFSET,STRUCT_P) \
352         ((S_TYPE)(((char*)(STRUCT_P))+(S_OFFSET)))
353
354 typedef int (*vnodeopv_entry_t)(struct vop_generic_args *);
355
356 /*
357  * VOCALL calls an op given an ops vector.  We break it out because BSD's
358  * vclean changes the ops vector and then wants to call ops with the old
359  * vector.
360  */
361
362 typedef int (*vocall_func_t)(struct vop_generic_args *);
363
364 /*
365  * This call executes the vops vector for the offset stored in the ap's
366  * descriptor of the passed vops rather then the one related to the
367  * ap's vop_ops structure.  It is used to chain VOPS calls on behalf of
368  * filesystems from a VFS's context ONLY (that is, from a VFS's own vops
369  * vector function).
370  */
371 #define VOCALL(vops, ap)                \
372         (*(vocall_func_t *)((char *)(vops)+((ap)->a_desc->sd_offset)))(ap)
373
374 #define VDESC(OP) (& __CONCAT(OP,_desc))
375
376 /*
377  * Public vnode manipulation functions.
378  */
379 struct file;
380 struct mount;
381 struct nlookupdata;
382 struct proc;
383 struct thread;
384 struct stat;
385 struct ucred;
386 struct uio;
387 struct vattr;
388 struct vnode;
389 struct syncer_ctx;
390
391 struct vnode *getsynthvnode(const char *devname);
392 void    addaliasu (struct vnode *vp, int x, int y);
393 int     v_associate_rdev(struct vnode *vp, cdev_t dev);
394 void    v_release_rdev(struct vnode *vp);
395 int     bdevvp (cdev_t dev, struct vnode **vpp);
396 struct vnode *allocvnode(int lktimeout, int lkflags);
397 void    allocvnode_gc(void);
398 void    vnode_free_rover_scan(int count);
399 int     freesomevnodes(int count);
400 int     getnewvnode (enum vtagtype tag, struct mount *mp, 
401                     struct vnode **vpp, int timo, int lkflags);
402 int     getspecialvnode (enum vtagtype tag, struct mount *mp, 
403                     struct vop_ops **ops, struct vnode **vpp, int timo, 
404                     int lkflags);
405 void    speedup_syncer (struct mount *mp);
406 int     vaccess(enum vtype, mode_t, uid_t, gid_t, mode_t, struct ucred *);
407 void    vattr_null (struct vattr *vap);
408 int     vcount (struct vnode *vp);
409 int     vfinddev (cdev_t dev, enum vtype type, struct vnode **vpp);
410 void    vfs_nadd_vnodeops_sysinit (void *);
411 void    vfs_nrm_vnodeops_sysinit (void *);
412 void    vfs_add_vnodeops(struct mount *, struct vop_ops *, struct vop_ops **);
413 void    vfs_rm_vnodeops(struct mount *, struct vop_ops *, struct vop_ops **);
414 int     vflush (struct mount *mp, int rootrefs, int flags);
415
416 int     vmntvnodescan(struct mount *mp, int flags,
417             int (*fastfunc)(struct mount *mp, struct vnode *vp, void *data),
418             int (*slowfunc)(struct mount *mp, struct vnode *vp, void *data),
419             void *data);
420 int     vsyncscan(struct mount *mp, int flags,
421             int (*slowfunc)(struct mount *mp, struct vnode *vp, void *data),
422             void *data);
423 void    vclrisdirty(struct vnode *vp);
424 void    vclrobjdirty(struct vnode *vp);
425 void    vsetisdirty(struct vnode *vp);
426 void    vsetobjdirty(struct vnode *vp);
427
428 void    insmntque(struct vnode *vp, struct mount *mp);
429
430 void    vclean_vxlocked (struct vnode *vp, int flags);
431 void    vclean_unlocked (struct vnode *vp);
432 void    vgone_vxlocked (struct vnode *vp);
433 int     vrevoke (struct vnode *vp, struct ucred *cred);
434 int     vinvalbuf (struct vnode *vp, int save, int slpflag, int slptimeo);
435 int     vtruncbuf (struct vnode *vp, off_t length, int blksize);
436 void    vnode_pager_setsize (struct vnode *, vm_ooffset_t);
437 int     nvtruncbuf (struct vnode *vp, off_t length, int blksize, int boff,
438                 int trivial);
439 int     nvextendbuf(struct vnode *vp, off_t olength, off_t nlength,
440                 int oblksize, int nblksize,
441                 int oboff, int nboff, int trivial);
442 void    nvnode_pager_setsize (struct vnode *vp, off_t length,
443                 int blksize, int boff);
444 int     vfsync(struct vnode *vp, int waitfor, int passes,
445                 int (*checkdef)(struct buf *),
446                 int (*waitoutput)(struct vnode *, struct thread *));
447 int     vinitvmio(struct vnode *vp, off_t filesize, int blksize, int boff);
448 void    vprint (char *label, struct vnode *vp);
449 int     vrecycle (struct vnode *vp);
450 int     vmaxiosize (struct vnode *vp);
451 void    vn_strategy(struct vnode *vp, struct bio *bio);
452 int     vn_cache_strategy(struct vnode *vp, struct bio *bio);
453 int     vn_close (struct vnode *vp, int flags);
454 void    vn_gone (struct vnode *vp);
455 int     vn_isdisk (struct vnode *vp, int *errp);
456 int     vn_islocked (struct vnode *vp);
457 int     vn_islocked_unlock (struct vnode *vp);
458 void    vn_islocked_relock (struct vnode *vp, int vpls);
459 int     vn_lock (struct vnode *vp, int flags);
460 void    vn_unlock (struct vnode *vp);
461
462 #ifdef  DEBUG_LOCKS
463 int     debug_vn_lock (struct vnode *vp, int flags,
464                 const char *filename, int line);
465 #define vn_lock(vp,flags)       debug_vn_lock(vp, flags, __FILE__, __LINE__)
466 #endif
467
468 /*#define DEBUG_VN_UNLOCK*/
469 #ifdef DEBUG_VN_UNLOCK
470 void    debug_vn_unlock (struct vnode *vp,
471                 const char *filename, int line);
472 #define vn_unlock(vp)           debug_vn_unlock(vp, __FILE__, __LINE__)
473 #endif
474
475 int     vn_get_namelen(struct vnode *, int *);
476 void    vn_setspecops (struct file *fp);
477 int     vn_fullpath (struct proc *p, struct vnode *vn, char **retbuf, char **freebuf, int guess);
478 int     vn_open (struct nlookupdata *ndp, struct file *fp, int fmode, int cmode);
479 int     vn_opendisk (const char *devname, int fmode, struct vnode **vpp);
480 int     vn_rdwr (enum uio_rw rw, struct vnode *vp, caddr_t base,
481             int len, off_t offset, enum uio_seg segflg, int ioflg,
482             struct ucred *cred, int *aresid);
483 int     vn_rdwr_inchunks (enum uio_rw rw, struct vnode *vp, caddr_t base,
484             int len, off_t offset, enum uio_seg segflg, int ioflg,
485             struct ucred *cred, int *aresid);
486 int     vn_stat (struct vnode *vp, struct stat *sb, struct ucred *cred);
487 cdev_t  vn_todev (struct vnode *vp);
488 void    vfs_timestamp (struct timespec *);
489 size_t  vfs_flagstostr(int flags, const struct mountctl_opt *optp, char *buf, size_t len, int *errorp);
490 void    vn_mark_atime(struct vnode *vp, struct thread *td);
491 int     vn_writechk (struct vnode *vp, struct nchandle *nch);
492 int     ncp_writechk(struct nchandle *nch);
493 int     vop_stdopen (struct vop_open_args *ap);
494 int     vop_stdclose (struct vop_close_args *ap);
495 int     vop_stdmountctl(struct vop_mountctl_args *ap);
496 int     vop_stdgetpages(struct vop_getpages_args *ap);
497 int     vop_stdputpages(struct vop_putpages_args *ap);
498 int     vop_stdmarkatime(struct vop_markatime_args *ap);
499 int     vop_stdnoread(struct vop_read_args *ap);
500 int     vop_stdnowrite(struct vop_write_args *ap);
501 int     vop_stdpathconf (struct vop_pathconf_args *ap);
502 int     vop_eopnotsupp (struct vop_generic_args *ap);
503 int     vop_ebadf (struct vop_generic_args *ap);
504 int     vop_einval (struct vop_generic_args *ap);
505 int     vop_enotty (struct vop_generic_args *ap);
506 int     vop_defaultop (struct vop_generic_args *ap);
507 int     vop_null (struct vop_generic_args *ap);
508 int     vop_panic (struct vop_generic_args *ap);
509 int     vop_write_dirent(int *, struct uio *, ino_t, uint8_t, uint16_t,
510                          const char *);
511
512 int     vop_compat_nresolve(struct vop_nresolve_args *ap);
513 int     vop_compat_nlookupdotdot(struct vop_nlookupdotdot_args *ap);
514 int     vop_compat_ncreate(struct vop_ncreate_args *ap);
515 int     vop_compat_nmkdir(struct vop_nmkdir_args *ap);
516 int     vop_compat_nmknod(struct vop_nmknod_args *ap);
517 int     vop_compat_nlink(struct vop_nlink_args *ap);
518 int     vop_compat_nsymlink(struct vop_nsymlink_args *ap);
519 int     vop_compat_nwhiteout(struct vop_nwhiteout_args *ap);
520 int     vop_compat_nremove(struct vop_nremove_args *ap);
521 int     vop_compat_nrmdir(struct vop_nrmdir_args *ap);
522 int     vop_compat_nrename(struct vop_nrename_args *ap);
523
524 void    vx_lock (struct vnode *vp);
525 void    vx_unlock (struct vnode *vp);
526 void    vx_get (struct vnode *vp);
527 int     vx_get_nonblock (struct vnode *vp);
528 void    vx_put (struct vnode *vp);
529 int     vget (struct vnode *vp, int lockflag);
530 void    vput (struct vnode *vp);
531 void    vhold (struct vnode *);
532 void    vhold_interlocked (struct vnode *);
533 void    vdrop (struct vnode *);
534 void    vref (struct vnode *vp);
535 void    vrele (struct vnode *vp);
536 void    vsetflags (struct vnode *vp, int flags);
537 void    vclrflags (struct vnode *vp, int flags);
538
539 /*#define DEBUG_VPUT*/
540 #ifdef DEBUG_VPUT
541 void    debug_vput (struct vnode *vp, const char *filename, int line);
542 #define vput(vp)                debug_vput(vp, __FILE__, __LINE__)
543 #endif
544
545 void    vfs_subr_init(void);
546 void    vfs_mount_init(void);
547 void    vfs_lock_init(void);
548 void    mount_init(struct mount *mp);
549
550 void    vn_syncer_add(struct vnode *, int);
551 void    vn_syncer_remove(struct vnode *);
552 void    vn_syncer_thr_create(struct mount *);
553 void    vn_syncer_thr_stop(struct mount *);
554
555 extern  struct vop_ops default_vnode_vops;
556 extern  struct vop_ops dead_vnode_vops;
557
558 extern  struct vop_ops *default_vnode_vops_p;
559 extern  struct vop_ops *dead_vnode_vops_p;
560
561 #endif  /* _KERNEL */
562
563 #endif  /* _KERNEL || _KERNEL_STRUCTURES */
564 #endif  /* !_SYS_VNODE_H_ */