[BACK]Return to vnode_if.src CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / kern

File: [cvs.NetBSD.org] / src / sys / kern / vnode_if.src (download)

Revision 1.57, Fri Jan 25 14:32:15 2008 UTC (16 years, 2 months ago) by ad
Branch: MAIN
CVS Tags: yamt-pf42-baseX, yamt-pf42-base4, yamt-pf42-base3, yamt-pf42-base2, yamt-pf42-base, yamt-pf42, yamt-nfs-mp-base2, yamt-nfs-mp-base, yamt-lazymbuf-base15, yamt-lazymbuf-base14, wrstuden-revivesa-base-4, wrstuden-revivesa-base-3, wrstuden-revivesa-base-2, wrstuden-revivesa-base-1, wrstuden-revivesa-base, wrstuden-revivesa, simonb-wapbl-nbase, simonb-wapbl-base, simonb-wapbl, nick-net80211-sync-base, nick-net80211-sync, netbsd-5-base, netbsd-5-2-RELEASE, netbsd-5-2-RC1, netbsd-5-2-3-RELEASE, netbsd-5-2-2-RELEASE, netbsd-5-2-1-RELEASE, netbsd-5-2, netbsd-5-1-RELEASE, netbsd-5-1-RC4, netbsd-5-1-RC3, netbsd-5-1-RC2, netbsd-5-1-RC1, netbsd-5-1-5-RELEASE, netbsd-5-1-4-RELEASE, netbsd-5-1-3-RELEASE, netbsd-5-1-2-RELEASE, netbsd-5-1-1-RELEASE, netbsd-5-1, netbsd-5-0-RELEASE, netbsd-5-0-RC4, netbsd-5-0-RC3, netbsd-5-0-RC2, netbsd-5-0-RC1, netbsd-5-0-2-RELEASE, netbsd-5-0-1-RELEASE, netbsd-5-0, netbsd-5, mjf-devfs-base, matt-nb5-pq3-base, matt-nb5-pq3, matt-nb5-mips64-u2-k2-k4-k7-k8-k9, matt-nb5-mips64-u1-k1-k5, matt-nb5-mips64-premerge-20101231, matt-nb5-mips64-premerge-20091211, matt-nb5-mips64-k15, matt-nb5-mips64, matt-nb4-mips64-k7-u2a-k9b, matt-mips64-base2, matt-armv6-nbase, keiichi-mipv6-nbase, keiichi-mipv6-base, keiichi-mipv6, hpcarm-cleanup-nbase, hpcarm-cleanup-base, haad-dm-base1, ad-socklock-base1
Branch point for: yamt-nfs-mp, nick-hppapmap, mjf-devfs2, haad-dm
Changes since 1.56: +1 -10 lines

Remove VOP_LEASE. Discussed on tech-kern.

#	$NetBSD: vnode_if.src,v 1.57 2008/01/25 14:32:15 ad Exp $
#
# Copyright (c) 1992, 1993
#	The Regents of the University of California.  All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
#    notice, this list of conditions and the following disclaimer in the
#    documentation and/or other materials provided with the distribution.
# 3. All advertising materials mentioning features or use of this software
#    must display the following acknowledgement:
#	This product includes software developed by the University of
#	California, Berkeley and its contributors.
# 4. Neither the name of the University nor the names of its contributors
#    may be used to endorse or promote products derived from this software
#    without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#
#	@(#)vnode_if.src	8.14 (Berkeley) 8/6/95
#
#

# 
# Above each of the vop descriptors is a specification of the locking
# protocol used by each vop call.  The first column is the name of
# the variable, the remaining three columns are in, out and error
# respectively.  The "in" column defines the lock state on input,
# the "out" column defines the state on successful return, and the
# "error" column defines the locking state on error exit.
#     
# The locking value can take the following values:
# L: locked.
# U: unlocked.
# -: not applicable.  vnode does not yet (or no longer) exists.
# =: the same on input and output, may be either L or U.
# X: locked if not nil.
#
# For operations other than VOP_LOOKUP which require a component name
# parameter, the flags required for the initial namei() call are listed.
# Additional flags may be added to the namei() call, but these are required.
#     
 
#
#% lookup     dvp     L L L
#% lookup     vpp     - L -
#
# XXX - the lookup locking protocol defies simple description.
#    Note especially that *vpp may equal dvp.
#
#    More details:
#     There are three types of lookups: ".", ".." (ISDOTDOT), and other.
#     On successful lookup of ".", a reference is added to dvp, and it
#          is returned in *vpp.
#     To look up ISDOTDOT, dvp is unlocked, the ".." node is locked, and
#          then dvp is relocked.  This preserves the protocol of always
#          locking nodes from root ("/") downward and prevents deadlock.
#     Other lookups find the named node (creating the vnode if needed) and
#          return it, locked, in *vpp.
#     On failure, *vpp is NULL, and *dvp is left locked.
#	
#     *vpp is always locked on return if the operation succeeds.
#          Typically, if *vpp == dvp, you need to release twice, but
#          unlock only once.
#
#     See sys/sys/namei.h for a description of the SAVENAME and SAVESTART
#          flags.
#
vop_lookup {
	IN struct vnode *dvp;
	INOUT WILLMAKE struct vnode **vpp;
	IN struct componentname *cnp;
};

#
#% create     dvp     L U U
#% create     vpp     - L -
#
#! create cnp	CREATE, LOCKPARENT
#
vop_create {
	IN LOCKED=YES WILLPUT struct vnode *dvp;
	OUT WILLMAKE struct vnode **vpp;
	IN struct componentname *cnp;
	IN struct vattr *vap;
};

#
#% mknod      dvp     L U U
#% mknod      vpp     - L -
#
#! mknod cnp	CREATE, LOCKPARENT
#
vop_mknod {
	IN LOCKED=YES WILLPUT struct vnode *dvp;
	OUT WILLMAKE struct vnode **vpp;
	IN struct componentname *cnp;
	IN struct vattr *vap;
};

#
#% open               vp      L L L
#
vop_open {
	IN LOCKED=YES struct vnode *vp;
	IN int mode;
	IN kauth_cred_t cred;
};

#
#% close      vp      L L L
#
vop_close {
	IN LOCKED=YES struct vnode *vp;
	IN int fflag;
	IN kauth_cred_t cred;
};

#
#% access     vp      L L L
#
vop_access {
	IN LOCKED=YES struct vnode *vp;
	IN int mode;
	IN kauth_cred_t cred;
};

#
#% getattr    vp      = = =
#
vop_getattr {
	IN struct vnode *vp;
	IN struct vattr *vap;
	IN kauth_cred_t cred;
};

#
#% setattr    vp      L L L
#
vop_setattr {
	IN LOCKED=YES struct vnode *vp;
	IN struct vattr *vap;
	IN kauth_cred_t cred;
};

#
#% read               vp      L L L
#
vop_read {
	IN LOCKED=YES struct vnode *vp;
	INOUT struct uio *uio;
	IN int ioflag;
	IN kauth_cred_t cred;
};

#
#% write      vp      L L L
#
vop_write {
	IN LOCKED=YES struct vnode *vp;
	INOUT struct uio *uio;
	IN int ioflag;
	IN kauth_cred_t cred;
};

#
#% ioctl      vp      U U U
#
vop_ioctl {
	IN LOCKED=NO struct vnode *vp;
	IN u_long command;
	IN void *data;
	IN int fflag;
	IN kauth_cred_t cred;
};

#
#% fcntl      vp      U U U
#
vop_fcntl {
	IN LOCKED=NO struct vnode *vp;
	IN u_int command;
	IN void *data;
	IN int fflag;
	IN kauth_cred_t cred;
};

#
#% poll     vp      U U U
#
vop_poll {
	IN LOCKED=NO struct vnode *vp;
	IN int events;
};

#
#% kqfilter     vp      U U U
#
vop_kqfilter {
	IN LOCKED=NO struct vnode *vp;
	IN struct knote *kn;
};

#
#% revoke     vp      U U U
#
vop_revoke {
	IN LOCKED=NO struct vnode *vp;
	IN int flags;
};

#     
#% mmap      vp      = = =
#
vop_mmap {
	IN struct vnode *vp;
	IN vm_prot_t prot;
	IN kauth_cred_t cred;
};

#
#% fsync      vp      L L L
#
vop_fsync {
	IN LOCKED=YES struct vnode *vp;
	IN kauth_cred_t cred;
	IN int flags;
	IN off_t offlo;
	IN off_t offhi;
};

#
# Needs work: Is newoff right?  What's it mean?
# XXX Locking protocol?
#
vop_seek {
	IN struct vnode *vp;
	IN off_t oldoff;
	IN off_t newoff;
	IN kauth_cred_t cred;
};

#
#% remove     dvp     L U U
#% remove     vp      L U U
#
#! remove cnp	DELETE, LOCKPARENT | LOCKLEAF
#
vop_remove {
	IN LOCKED=YES WILLPUT struct vnode *dvp;
	IN LOCKED=YES WILLPUT struct vnode *vp;
	IN struct componentname *cnp;
};

#
#% link               dvp     L U U
#% link               vp      U U U
#
#! link	 cnp	CREATE, LOCKPARENT
#
vop_link {
	IN LOCKED=YES WILLPUT struct vnode *dvp;
	IN LOCKED=NO struct vnode *vp;
	IN struct componentname *cnp;
};

#
#% rename     fdvp    U U U
#% rename     fvp     U U U
#% rename     tdvp    L U U
#% rename     tvp     X U U
#
#! rename fcnp	DELETE,	LOCKPARENT | SAVESTART
#! rename tcnp	RENAME, LOCKPARENT | LOCKLEAF | NOCACHE | SAVESTART
#
# XXX the vop_rename routines should REALLY NOT be depending on SAVESTART!
#
vop_rename {
	IN LOCKED=NO WILLRELE struct vnode *fdvp;
	IN LOCKED=NO WILLRELE struct vnode *fvp;
	IN struct componentname *fcnp;
	IN LOCKED=YES WILLPUT struct vnode *tdvp;
	IN WILLPUT struct vnode *tvp;
	IN struct componentname *tcnp;
};

#
#% mkdir      dvp     L U U
#% mkdir      vpp     - L - 
#
#! mkdir cnp	CREATE, LOCKPARENT
#
vop_mkdir {
	IN LOCKED=YES WILLPUT struct vnode *dvp;
	OUT WILLMAKE struct vnode **vpp;
	IN struct componentname *cnp;
	IN struct vattr *vap;
};

#
#% rmdir      dvp     L U U
#% rmdir      vp      L U U
#
#! rmdir cnp	DELETE, LOCKPARENT | LOCKLEAF
#
vop_rmdir {
	IN LOCKED=YES WILLPUT struct vnode *dvp;
	IN LOCKED=YES WILLPUT struct vnode *vp;
	IN struct componentname *cnp;
};

#
#% symlink    dvp     L U U
#% symlink    vpp     - L -
#
#! symlink cnp	CREATE, LOCKPARENT
#
vop_symlink {
	IN LOCKED=YES WILLPUT struct vnode *dvp;
	OUT WILLMAKE struct vnode **vpp;
	IN struct componentname *cnp;
	IN struct vattr *vap;
	IN char *target;
};

#
#% readdir    vp      L L L   
#
vop_readdir {
	IN LOCKED=YES struct vnode *vp;
	INOUT struct uio *uio;
	IN kauth_cred_t cred;
	OUT int *eofflag;
	OUT off_t **cookies;
	IN int *ncookies;
};

#
#% readlink   vp      L L L
#
vop_readlink {
	IN LOCKED=YES struct vnode *vp;
	INOUT struct uio *uio;
	IN kauth_cred_t cred;
};

#
#% abortop    dvp     = = =
#
#! abortop cnp	as appropriate.
#
vop_abortop {
	IN struct vnode *dvp;
	IN struct componentname *cnp;
};

#
#% inactive   vp      L U U  
#
vop_inactive {
	IN LOCKED=YES WILLUNLOCK struct vnode *vp;
	INOUT bool *recycle;
};

#
#% reclaim    vp      U U U
#
vop_reclaim {
	IN LOCKED=NO struct vnode *vp;
};

#
#% lock               vp      U L U
#
vop_lock {
	IN LOCKED=NO struct vnode *vp;
	IN int flags;
};

#
#% unlock     vp      L U L
#
vop_unlock {
	IN LOCKED=YES struct vnode *vp;
	IN int flags;
};

#
#% bmap               vp      = = =
#% bmap               vpp     - U -
#
vop_bmap {
	IN struct vnode *vp;
	IN daddr_t bn;
	OUT struct vnode **vpp;
	IN daddr_t *bnp;
	OUT int *runp;
};

#
#% strategy   vp      = = =
#
vop_strategy {
	IN struct vnode *vp;
	IN struct buf *bp;
};

#
#% print      vp      = = =
#
vop_print {
	IN struct vnode *vp;
};

#
#% islocked   vp      = = =
#
vop_islocked {
	IN struct vnode *vp;
};

#
#% pathconf   vp      L L L
#
vop_pathconf {
	IN LOCKED=YES struct vnode *vp;
	IN int name;
	OUT register_t *retval;
};

#
#% advlock    vp      U U U
#
vop_advlock {
	IN LOCKED=NO struct vnode *vp;
	IN void *id;
	IN int op;
	IN struct flock *fl;
	IN int flags;
};

#
#% whiteout   dvp     L L L
#% whiteout   cnp     - - -
#% whiteout   flag    - - -
#
#! whiteout cnp	CREATE, LOCKPARENT
# 
vop_whiteout {
	IN LOCKED=YES struct vnode *dvp;
	IN struct componentname *cnp;
	IN int flags;
};

#
# Needs work: no vp?
#
#vop_bwrite {
#	IN struct buf *bp;
#};

#
#% getpages	vp = = =
#
vop_getpages {
	IN struct vnode *vp;
	IN voff_t offset;
	IN struct vm_page **m;
	IN int *count;
	IN int centeridx;
	IN vm_prot_t access_type;
	IN int advice;
	IN int flags;
};

#
#% putpages	vp = = =
#
vop_putpages {
	IN struct vnode *vp;
	IN voff_t offlo;
	IN voff_t offhi;
	IN int flags;
};

#
#% closeextattr	vp L L L
#
vop_closeextattr {
	IN LOCKED=YES struct vnode *vp;
	IN int commit;
	IN kauth_cred_t cred;
};

#
#% getextattr	vp L L L
#
vop_getextattr {
	IN LOCKED=YES struct vnode *vp;
	IN int attrnamespace;
	IN const char *name;
	INOUT struct uio *uio;
	OUT size_t *size;
	IN kauth_cred_t cred;
};

#
#% listextattr	vp L L L
#
vop_listextattr {
	IN LOCKED=YES struct vnode *vp;
	IN int attrnamespace;
	INOUT struct uio *uio;
	OUT size_t *size;
	IN kauth_cred_t cred;
};

#
#% openextattr	vp L L L
#
vop_openextattr {
	IN LOCKED=YES struct vnode *vp;
	IN kauth_cred_t cred;
};

#
#% deleteextattr vp L L L
#
vop_deleteextattr {
	IN LOCKED=YES struct vnode *vp;
	IN int attrnamespace;
	IN const char *name;
	IN kauth_cred_t cred;
};

#
#% setextattr	vp L L L
#
vop_setextattr {
	IN LOCKED=YES struct vnode *vp;
	IN int attrnamespace;
	IN const char *name;
	INOUT struct uio *uio;
	IN kauth_cred_t cred;
};