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