diff options
author | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2011-04-02 16:27:30 +0000 |
---|---|---|
committer | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2011-04-02 16:27:30 +0000 |
commit | aceb690be312a10ddc0f200f94f3eb59cde42096 (patch) | |
tree | 7d1f767d505b7a726ed7d7e64b390b36b3ecb7e1 /sys/kern | |
parent | cf14d94ef3f167d461ce4d52a7c6ccd1679ca0f0 (diff) |
remove the vnode_if.* files, as they are now totally
obsolete.
the move to vfs_vops.c is here to stay, so they are
pointless.
Diffstat (limited to 'sys/kern')
-rw-r--r-- | sys/kern/vnode_if.c | 750 | ||||
-rw-r--r-- | sys/kern/vnode_if.sh | 358 | ||||
-rw-r--r-- | sys/kern/vnode_if.src | 439 |
3 files changed, 0 insertions, 1547 deletions
diff --git a/sys/kern/vnode_if.c b/sys/kern/vnode_if.c deleted file mode 100644 index a5fa07840ba..00000000000 --- a/sys/kern/vnode_if.c +++ /dev/null @@ -1,750 +0,0 @@ -/* - * Warning: This file is generated automatically. - * (Modifications made here may easily be lost!) - * - * Created from the file: - * OpenBSD: vnode_if.src,v 1.32 2007/01/16 17:52:18 thib Exp - * by the script: - * OpenBSD: vnode_if.sh,v 1.16 2007/12/12 16:24:49 thib 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. 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. - */ - -#include <sys/param.h> -#include <sys/mount.h> -#include <sys/vnode.h> - -struct vnodeop_desc vop_default_desc = { - 0, - "default", - 0, -}; - -struct vnodeop_desc vop_islocked_desc = { - 0, - "vop_islocked", - 0, -}; - -int VOP_ISLOCKED(struct vnode *vp) -{ - struct vop_islocked_args a; - a.a_desc = VDESC(vop_islocked); - a.a_vp = vp; - return (VCALL(vp, VOFFSET(vop_islocked), &a)); -} -struct vnodeop_desc vop_lookup_desc = { - 0, - "vop_lookup", - 0, -}; - -int VOP_LOOKUP(struct vnode *dvp, struct vnode **vpp, - struct componentname *cnp) -{ - struct vop_lookup_args a; - a.a_desc = VDESC(vop_lookup); - a.a_dvp = dvp; - a.a_vpp = vpp; - a.a_cnp = cnp; - return (VCALL(dvp, VOFFSET(vop_lookup), &a)); -} -struct vnodeop_desc vop_create_desc = { - 0, - "vop_create", - 0 | VDESC_VP0_WILLPUT, -}; - -int VOP_CREATE(struct vnode *dvp, struct vnode **vpp, - struct componentname *cnp, struct vattr *vap) -{ - struct vop_create_args a; - a.a_desc = VDESC(vop_create); - a.a_dvp = dvp; -#ifdef VFSDEBUG - if ((dvp->v_flag & VLOCKSWORK) && !VOP_ISLOCKED(dvp)) - panic("vop_create: dvp"); -#endif - a.a_vpp = vpp; - a.a_cnp = cnp; - a.a_vap = vap; - return (VCALL(dvp, VOFFSET(vop_create), &a)); -} -struct vnodeop_desc vop_mknod_desc = { - 0, - "vop_mknod", - 0 | VDESC_VP0_WILLPUT | VDESC_VPP_WILLRELE, -}; - -int VOP_MKNOD(struct vnode *dvp, struct vnode **vpp, - struct componentname *cnp, struct vattr *vap) -{ - struct vop_mknod_args a; - a.a_desc = VDESC(vop_mknod); - a.a_dvp = dvp; -#ifdef VFSDEBUG - if ((dvp->v_flag & VLOCKSWORK) && !VOP_ISLOCKED(dvp)) - panic("vop_mknod: dvp"); -#endif - a.a_vpp = vpp; - a.a_cnp = cnp; - a.a_vap = vap; - return (VCALL(dvp, VOFFSET(vop_mknod), &a)); -} -struct vnodeop_desc vop_open_desc = { - 0, - "vop_open", - 0, -}; - -int VOP_OPEN(struct vnode *vp, int mode, struct ucred *cred, struct proc *p) -{ - struct vop_open_args a; - a.a_desc = VDESC(vop_open); - a.a_vp = vp; - a.a_mode = mode; - a.a_cred = cred; - a.a_p = p; - return (VCALL(vp, VOFFSET(vop_open), &a)); -} -struct vnodeop_desc vop_close_desc = { - 0, - "vop_close", - 0, -}; - -int VOP_CLOSE(struct vnode *vp, int fflag, struct ucred *cred, struct proc *p) -{ - struct vop_close_args a; - a.a_desc = VDESC(vop_close); - a.a_vp = vp; -#ifdef VFSDEBUG - if ((vp->v_flag & VLOCKSWORK) && !VOP_ISLOCKED(vp)) - panic("vop_close: vp"); -#endif - a.a_fflag = fflag; - a.a_cred = cred; - a.a_p = p; - return (VCALL(vp, VOFFSET(vop_close), &a)); -} -struct vnodeop_desc vop_access_desc = { - 0, - "vop_access", - 0, -}; - -int VOP_ACCESS(struct vnode *vp, int mode, struct ucred *cred, struct proc *p) -{ - struct vop_access_args a; - a.a_desc = VDESC(vop_access); - a.a_vp = vp; -#ifdef VFSDEBUG - if ((vp->v_flag & VLOCKSWORK) && !VOP_ISLOCKED(vp)) - panic("vop_access: vp"); -#endif - a.a_mode = mode; - a.a_cred = cred; - a.a_p = p; - return (VCALL(vp, VOFFSET(vop_access), &a)); -} -struct vnodeop_desc vop_getattr_desc = { - 0, - "vop_getattr", - 0, -}; - -int VOP_GETATTR(struct vnode *vp, struct vattr *vap, struct ucred *cred, - struct proc *p) -{ - struct vop_getattr_args a; - a.a_desc = VDESC(vop_getattr); - a.a_vp = vp; - a.a_vap = vap; - a.a_cred = cred; - a.a_p = p; - return (VCALL(vp, VOFFSET(vop_getattr), &a)); -} -struct vnodeop_desc vop_setattr_desc = { - 0, - "vop_setattr", - 0, -}; - -int VOP_SETATTR(struct vnode *vp, struct vattr *vap, struct ucred *cred, - struct proc *p) -{ - struct vop_setattr_args a; - a.a_desc = VDESC(vop_setattr); - a.a_vp = vp; -#ifdef VFSDEBUG - if ((vp->v_flag & VLOCKSWORK) && !VOP_ISLOCKED(vp)) - panic("vop_setattr: vp"); -#endif - a.a_vap = vap; - a.a_cred = cred; - a.a_p = p; - return (VCALL(vp, VOFFSET(vop_setattr), &a)); -} -struct vnodeop_desc vop_read_desc = { - 0, - "vop_read", - 0, -}; - -int VOP_READ(struct vnode *vp, struct uio *uio, int ioflag, struct ucred *cred) -{ - struct vop_read_args a; - a.a_desc = VDESC(vop_read); - a.a_vp = vp; -#ifdef VFSDEBUG - if ((vp->v_flag & VLOCKSWORK) && !VOP_ISLOCKED(vp)) - panic("vop_read: vp"); -#endif - a.a_uio = uio; - a.a_ioflag = ioflag; - a.a_cred = cred; - return (VCALL(vp, VOFFSET(vop_read), &a)); -} -struct vnodeop_desc vop_write_desc = { - 0, - "vop_write", - 0, -}; - -int VOP_WRITE(struct vnode *vp, struct uio *uio, int ioflag, - struct ucred *cred) -{ - struct vop_write_args a; - a.a_desc = VDESC(vop_write); - a.a_vp = vp; -#ifdef VFSDEBUG - if ((vp->v_flag & VLOCKSWORK) && !VOP_ISLOCKED(vp)) - panic("vop_write: vp"); -#endif - a.a_uio = uio; - a.a_ioflag = ioflag; - a.a_cred = cred; - return (VCALL(vp, VOFFSET(vop_write), &a)); -} -struct vnodeop_desc vop_ioctl_desc = { - 0, - "vop_ioctl", - 0, -}; - -int VOP_IOCTL(struct vnode *vp, u_long command, void *data, int fflag, - struct ucred *cred, struct proc *p) -{ - struct vop_ioctl_args a; - a.a_desc = VDESC(vop_ioctl); - a.a_vp = vp; - a.a_command = command; - a.a_data = data; - a.a_fflag = fflag; - a.a_cred = cred; - a.a_p = p; - return (VCALL(vp, VOFFSET(vop_ioctl), &a)); -} -struct vnodeop_desc vop_poll_desc = { - 0, - "vop_poll", - 0, -}; - -int VOP_POLL(struct vnode *vp, int events, struct proc *p) -{ - struct vop_poll_args a; - a.a_desc = VDESC(vop_poll); - a.a_vp = vp; - a.a_events = events; - a.a_p = p; - return (VCALL(vp, VOFFSET(vop_poll), &a)); -} -struct vnodeop_desc vop_kqfilter_desc = { - 0, - "vop_kqfilter", - 0, -}; - -int VOP_KQFILTER(struct vnode *vp, struct knote *kn) -{ - struct vop_kqfilter_args a; - a.a_desc = VDESC(vop_kqfilter); - a.a_vp = vp; - a.a_kn = kn; - return (VCALL(vp, VOFFSET(vop_kqfilter), &a)); -} -struct vnodeop_desc vop_revoke_desc = { - 0, - "vop_revoke", - 0, -}; - -int VOP_REVOKE(struct vnode *vp, int flags) -{ - struct vop_revoke_args a; - a.a_desc = VDESC(vop_revoke); - a.a_vp = vp; - a.a_flags = flags; - return (VCALL(vp, VOFFSET(vop_revoke), &a)); -} -struct vnodeop_desc vop_fsync_desc = { - 0, - "vop_fsync", - 0, -}; - -int VOP_FSYNC(struct vnode *vp, struct ucred *cred, int waitfor, - struct proc *p) -{ - struct vop_fsync_args a; - a.a_desc = VDESC(vop_fsync); - a.a_vp = vp; -#ifdef VFSDEBUG - if ((vp->v_flag & VLOCKSWORK) && !VOP_ISLOCKED(vp)) - panic("vop_fsync: vp"); -#endif - a.a_cred = cred; - a.a_waitfor = waitfor; - a.a_p = p; - return (VCALL(vp, VOFFSET(vop_fsync), &a)); -} -struct vnodeop_desc vop_remove_desc = { - 0, - "vop_remove", - 0 | VDESC_VP0_WILLPUT | VDESC_VP1_WILLPUT, -}; - -int VOP_REMOVE(struct vnode *dvp, struct vnode *vp, struct componentname *cnp) -{ - struct vop_remove_args a; - a.a_desc = VDESC(vop_remove); - a.a_dvp = dvp; -#ifdef VFSDEBUG - if ((dvp->v_flag & VLOCKSWORK) && !VOP_ISLOCKED(dvp)) - panic("vop_remove: dvp"); -#endif - a.a_vp = vp; -#ifdef VFSDEBUG - if ((vp->v_flag & VLOCKSWORK) && !VOP_ISLOCKED(vp)) - panic("vop_remove: vp"); -#endif - a.a_cnp = cnp; - return (VCALL(dvp, VOFFSET(vop_remove), &a)); -} -struct vnodeop_desc vop_link_desc = { - 0, - "vop_link", - 0 | VDESC_VP0_WILLPUT, -}; - -int VOP_LINK(struct vnode *dvp, struct vnode *vp, struct componentname *cnp) -{ - struct vop_link_args a; - a.a_desc = VDESC(vop_link); - a.a_dvp = dvp; -#ifdef VFSDEBUG - if ((dvp->v_flag & VLOCKSWORK) && !VOP_ISLOCKED(dvp)) - panic("vop_link: dvp"); -#endif - a.a_vp = vp; - a.a_cnp = cnp; - return (VCALL(dvp, VOFFSET(vop_link), &a)); -} -struct vnodeop_desc vop_rename_desc = { - 0, - "vop_rename", - 0 | VDESC_VP0_WILLRELE | VDESC_VP1_WILLRELE | VDESC_VP2_WILLPUT | VDESC_VP3_WILLRELE, -}; - -int VOP_RENAME(struct vnode *fdvp, struct vnode *fvp, - struct componentname *fcnp, struct vnode *tdvp, struct vnode *tvp, - struct componentname *tcnp) -{ - struct vop_rename_args a; - a.a_desc = VDESC(vop_rename); - a.a_fdvp = fdvp; - a.a_fvp = fvp; - a.a_fcnp = fcnp; - a.a_tdvp = tdvp; -#ifdef VFSDEBUG - if ((tdvp->v_flag & VLOCKSWORK) && !VOP_ISLOCKED(tdvp)) - panic("vop_rename: tdvp"); -#endif - a.a_tvp = tvp; - a.a_tcnp = tcnp; - return (VCALL(fdvp, VOFFSET(vop_rename), &a)); -} -struct vnodeop_desc vop_mkdir_desc = { - 0, - "vop_mkdir", - 0 | VDESC_VP0_WILLPUT, -}; - -int VOP_MKDIR(struct vnode *dvp, struct vnode **vpp, - struct componentname *cnp, struct vattr *vap) -{ - struct vop_mkdir_args a; - a.a_desc = VDESC(vop_mkdir); - a.a_dvp = dvp; -#ifdef VFSDEBUG - if ((dvp->v_flag & VLOCKSWORK) && !VOP_ISLOCKED(dvp)) - panic("vop_mkdir: dvp"); -#endif - a.a_vpp = vpp; - a.a_cnp = cnp; - a.a_vap = vap; - return (VCALL(dvp, VOFFSET(vop_mkdir), &a)); -} -struct vnodeop_desc vop_rmdir_desc = { - 0, - "vop_rmdir", - 0 | VDESC_VP0_WILLPUT | VDESC_VP1_WILLPUT, -}; - -int VOP_RMDIR(struct vnode *dvp, struct vnode *vp, struct componentname *cnp) -{ - struct vop_rmdir_args a; - a.a_desc = VDESC(vop_rmdir); - a.a_dvp = dvp; -#ifdef VFSDEBUG - if ((dvp->v_flag & VLOCKSWORK) && !VOP_ISLOCKED(dvp)) - panic("vop_rmdir: dvp"); -#endif - a.a_vp = vp; -#ifdef VFSDEBUG - if ((vp->v_flag & VLOCKSWORK) && !VOP_ISLOCKED(vp)) - panic("vop_rmdir: vp"); -#endif - a.a_cnp = cnp; - return (VCALL(dvp, VOFFSET(vop_rmdir), &a)); -} -struct vnodeop_desc vop_symlink_desc = { - 0, - "vop_symlink", - 0 | VDESC_VP0_WILLPUT | VDESC_VPP_WILLRELE, -}; - -int VOP_SYMLINK(struct vnode *dvp, struct vnode **vpp, - struct componentname *cnp, struct vattr *vap, char *target) -{ - struct vop_symlink_args a; - a.a_desc = VDESC(vop_symlink); - a.a_dvp = dvp; -#ifdef VFSDEBUG - if ((dvp->v_flag & VLOCKSWORK) && !VOP_ISLOCKED(dvp)) - panic("vop_symlink: dvp"); -#endif - a.a_vpp = vpp; - a.a_cnp = cnp; - a.a_vap = vap; - a.a_target = target; - return (VCALL(dvp, VOFFSET(vop_symlink), &a)); -} -struct vnodeop_desc vop_readdir_desc = { - 0, - "vop_readdir", - 0, -}; - -int VOP_READDIR(struct vnode *vp, struct uio *uio, struct ucred *cred, - int *eofflag, int *ncookies, u_long **cookies) -{ - struct vop_readdir_args a; - a.a_desc = VDESC(vop_readdir); - a.a_vp = vp; -#ifdef VFSDEBUG - if ((vp->v_flag & VLOCKSWORK) && !VOP_ISLOCKED(vp)) - panic("vop_readdir: vp"); -#endif - a.a_uio = uio; - a.a_cred = cred; - a.a_eofflag = eofflag; - a.a_ncookies = ncookies; - a.a_cookies = cookies; - return (VCALL(vp, VOFFSET(vop_readdir), &a)); -} -struct vnodeop_desc vop_readlink_desc = { - 0, - "vop_readlink", - 0, -}; - -int VOP_READLINK(struct vnode *vp, struct uio *uio, struct ucred *cred) -{ - struct vop_readlink_args a; - a.a_desc = VDESC(vop_readlink); - a.a_vp = vp; -#ifdef VFSDEBUG - if ((vp->v_flag & VLOCKSWORK) && !VOP_ISLOCKED(vp)) - panic("vop_readlink: vp"); -#endif - a.a_uio = uio; - a.a_cred = cred; - return (VCALL(vp, VOFFSET(vop_readlink), &a)); -} -struct vnodeop_desc vop_abortop_desc = { - 0, - "vop_abortop", - 0, -}; - -int VOP_ABORTOP(struct vnode *dvp, struct componentname *cnp) -{ - struct vop_abortop_args a; - a.a_desc = VDESC(vop_abortop); - a.a_dvp = dvp; - a.a_cnp = cnp; - return (VCALL(dvp, VOFFSET(vop_abortop), &a)); -} -struct vnodeop_desc vop_inactive_desc = { - 0, - "vop_inactive", - 0 | VDESC_VP0_WILLUNLOCK, -}; - -int VOP_INACTIVE(struct vnode *vp, struct proc *p) -{ - struct vop_inactive_args a; - a.a_desc = VDESC(vop_inactive); - a.a_vp = vp; -#ifdef VFSDEBUG - if ((vp->v_flag & VLOCKSWORK) && !VOP_ISLOCKED(vp)) - panic("vop_inactive: vp"); -#endif - a.a_p = p; - return (VCALL(vp, VOFFSET(vop_inactive), &a)); -} -struct vnodeop_desc vop_reclaim_desc = { - 0, - "vop_reclaim", - 0, -}; - -int VOP_RECLAIM(struct vnode *vp, struct proc *p) -{ - struct vop_reclaim_args a; - a.a_desc = VDESC(vop_reclaim); - a.a_vp = vp; - a.a_p = p; - return (VCALL(vp, VOFFSET(vop_reclaim), &a)); -} -struct vnodeop_desc vop_lock_desc = { - 0, - "vop_lock", - 0, -}; - -int VOP_LOCK(struct vnode *vp, int flags, struct proc *p) -{ - struct vop_lock_args a; - a.a_desc = VDESC(vop_lock); - a.a_vp = vp; - a.a_flags = flags; - a.a_p = p; - return (VCALL(vp, VOFFSET(vop_lock), &a)); -} -struct vnodeop_desc vop_unlock_desc = { - 0, - "vop_unlock", - 0, -}; - -int VOP_UNLOCK(struct vnode *vp, int flags, struct proc *p) -{ - struct vop_unlock_args a; - a.a_desc = VDESC(vop_unlock); - a.a_vp = vp; - a.a_flags = flags; - a.a_p = p; - return (VCALL(vp, VOFFSET(vop_unlock), &a)); -} -struct vnodeop_desc vop_bmap_desc = { - 0, - "vop_bmap", - 0, -}; - -int VOP_BMAP(struct vnode *vp, daddr64_t bn, struct vnode **vpp, - daddr64_t *bnp, int *runp) -{ - struct vop_bmap_args a; - a.a_desc = VDESC(vop_bmap); - a.a_vp = vp; -#ifdef VFSDEBUG - if ((vp->v_flag & VLOCKSWORK) && !VOP_ISLOCKED(vp)) - panic("vop_bmap: vp"); -#endif - a.a_bn = bn; - a.a_vpp = vpp; - a.a_bnp = bnp; - a.a_runp = runp; - return (VCALL(vp, VOFFSET(vop_bmap), &a)); -} -struct vnodeop_desc vop_print_desc = { - 0, - "vop_print", - 0, -}; - -int VOP_PRINT(struct vnode *vp) -{ - struct vop_print_args a; - a.a_desc = VDESC(vop_print); - a.a_vp = vp; - return (VCALL(vp, VOFFSET(vop_print), &a)); -} -struct vnodeop_desc vop_pathconf_desc = { - 0, - "vop_pathconf", - 0, -}; - -int VOP_PATHCONF(struct vnode *vp, int name, register_t *retval) -{ - struct vop_pathconf_args a; - a.a_desc = VDESC(vop_pathconf); - a.a_vp = vp; -#ifdef VFSDEBUG - if ((vp->v_flag & VLOCKSWORK) && !VOP_ISLOCKED(vp)) - panic("vop_pathconf: vp"); -#endif - a.a_name = name; - a.a_retval = retval; - return (VCALL(vp, VOFFSET(vop_pathconf), &a)); -} -struct vnodeop_desc vop_advlock_desc = { - 0, - "vop_advlock", - 0, -}; - -int VOP_ADVLOCK(struct vnode *vp, void *id, int op, struct flock *fl, int flags) -{ - struct vop_advlock_args a; - a.a_desc = VDESC(vop_advlock); - a.a_vp = vp; - a.a_id = id; - a.a_op = op; - a.a_fl = fl; - a.a_flags = flags; - return (VCALL(vp, VOFFSET(vop_advlock), &a)); -} -struct vnodeop_desc vop_reallocblks_desc = { - 0, - "vop_reallocblks", - 0, -}; - -int VOP_REALLOCBLKS(struct vnode *vp, struct cluster_save *buflist) -{ - struct vop_reallocblks_args a; - a.a_desc = VDESC(vop_reallocblks); - a.a_vp = vp; -#ifdef VFSDEBUG - if ((vp->v_flag & VLOCKSWORK) && !VOP_ISLOCKED(vp)) - panic("vop_reallocblks: vp"); -#endif - a.a_buflist = buflist; - return (VCALL(vp, VOFFSET(vop_reallocblks), &a)); -} - -/* Special cases: */ -struct vnodeop_desc vop_strategy_desc = { - 0, - "vop_strategy", - 0, -}; - -int VOP_STRATEGY(struct buf *bp) -{ - struct vop_strategy_args a; - a.a_desc = VDESC(vop_strategy); - a.a_bp = bp; - return (VCALL(bp->b_vp, VOFFSET(vop_strategy), &a)); -} -struct vnodeop_desc vop_bwrite_desc = { - 0, - "vop_bwrite", - 0, -}; - -int VOP_BWRITE(struct buf *bp) -{ - struct vop_bwrite_args a; - a.a_desc = VDESC(vop_bwrite); - a.a_bp = bp; - return (VCALL(bp->b_vp, VOFFSET(vop_bwrite), &a)); -} - -/* End of special cases. */ - -struct vnodeop_desc *vfs_op_descs[] = { - &vop_default_desc, /* MUST BE FIRST */ - &vop_strategy_desc, /* XXX: SPECIAL CASE */ - &vop_bwrite_desc, /* XXX: SPECIAL CASE */ - - &vop_islocked_desc, - &vop_lookup_desc, - &vop_create_desc, - &vop_mknod_desc, - &vop_open_desc, - &vop_close_desc, - &vop_access_desc, - &vop_getattr_desc, - &vop_setattr_desc, - &vop_read_desc, - &vop_write_desc, - &vop_ioctl_desc, - &vop_poll_desc, - &vop_kqfilter_desc, - &vop_revoke_desc, - &vop_fsync_desc, - &vop_remove_desc, - &vop_link_desc, - &vop_rename_desc, - &vop_mkdir_desc, - &vop_rmdir_desc, - &vop_symlink_desc, - &vop_readdir_desc, - &vop_readlink_desc, - &vop_abortop_desc, - &vop_inactive_desc, - &vop_reclaim_desc, - &vop_lock_desc, - &vop_unlock_desc, - &vop_bmap_desc, - &vop_print_desc, - &vop_pathconf_desc, - &vop_advlock_desc, - &vop_reallocblks_desc, - NULL -}; - diff --git a/sys/kern/vnode_if.sh b/sys/kern/vnode_if.sh deleted file mode 100644 index d79c55fbf3e..00000000000 --- a/sys/kern/vnode_if.sh +++ /dev/null @@ -1,358 +0,0 @@ -#!/bin/sh - -copyright="\ -/* - * 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. 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. - */ -" -SCRIPT_ID='$OpenBSD: vnode_if.sh,v 1.16 2007/12/12 16:24:49 thib Exp $' -# SCRIPT_ID='$NetBSD: vnode_if.sh,v 1.9 1996/02/29 20:58:22 cgd Exp $' - -# Script to produce VFS front-end sugar. -# -# usage: vnode_if.sh srcfile -# (where srcfile is currently /sys/kern/vnode_if.src) -# - -if [ $# -ne 1 ] ; then - echo 'usage: vnode_if.sh srcfile' - exit 1 -fi - -# Name and revision of the source file. -src=$1 -SRC_ID=`head -1 $src | sed -e 's/.*\$\(.*\)\$.*/\1/'` - -# Names of the created files. -out_c=vnode_if.c -out_h=../sys/vnode_if.h - -# Awk program (must support nawk extensions) -# Use "awk" at Berkeley, "nawk" or "gawk" elsewhere. -awk=${AWK:-awk} - -# Does this awk have a "toupper" function? (i.e. is it GNU awk) -isgawk=`$awk 'BEGIN { print toupper("true"); exit; }' 2>/dev/null` - -# If this awk does not define "toupper" then define our own. -if [ "$isgawk" = TRUE ] ; then - # GNU awk provides it. - toupper= -else - # Provide our own toupper() - toupper=' -function toupper(str) { - _toupper_cmd = "echo "str" |tr a-z A-Z" - _toupper_cmd | getline _toupper_str; - close(_toupper_cmd); - return _toupper_str; -}' -fi - -# -# This is the common part of all awk programs that read $src -# This parses the input for one function into the arrays: -# argdir, argtype, argname, willrele -# and calls "doit()" to generate output for the function. -# -# Input to this parser is pre-processed slightly by sed -# so this awk parser doesn't have to work so hard. The -# changes done by the sed pre-processing step are: -# insert a space beween * and pointer name -# replace semicolons with spaces -# -sed_prep='s:\*\([^\*/]\):\* \1:g -s/;/ /' -awk_parser=' -# Comment line -/^#/ { next; } -# First line of description -/^vop_/ { - name=$1; - argc=0; - next; -} -# Last line of description -/^}/ { - doit(); - next; -} -# Middle lines of description -{ - argdir[argc] = $1; i=2; - if ($2 == "WILLRELE" || - $3 == "WILLRELE") { - willrele[argc] = 1; - i++; - } else if ($2 == "WILLUNLOCK" || - $3 == "WILLUNLOCK") { - willrele[argc] = 2; - i++; - } else if ($2 == "WILLPUT" || - $3 == "WILLPUT") { - willrele[argc] = 3; - i++; - } else - willrele[argc] = 0; - - if ($2 == "SHOULDBELOCKED") { - shouldbelocked[argc] = 1; - i++; - } else - shouldbelocked[argc] = 0; - - argtype[argc] = $i; i++; - while (i < NF) { - argtype[argc] = argtype[argc]" "$i; - i++; - } - argname[argc] = $i; - argc++; - next; -} -' - -# This is put after the copyright on each generated file. -warning="\ -/* - * Warning: This file is generated automatically. - * (Modifications made here may easily be lost!) - * - * Created from the file: - * ${SRC_ID} - * by the script: - * ${SCRIPT_ID} - */ -" - -# This is to satisfy McKusick (get rid of evil spaces 8^) -anal_retentive='s:\([^/]\*\) :\1:g' - -# -# Redirect stdout to the H file. -# -echo "$0: Creating $out_h" 1>&2 -exec > $out_h - -# Begin stuff -echo -n "$warning" | sed -e 's/\$//g' -echo "" -echo -n "$copyright" -echo ' -extern struct vnodeop_desc vop_default_desc; -' - -echo '#include "systm.h"' - -# Body stuff -# This awk program needs toupper() so define it if necessary. -sed -e "$sed_prep" $src | $awk "$toupper"' -function doit() { - # Declare arg struct, descriptor. - printf("\nstruct %s_args {\n", name); - printf("\tstruct vnodeop_desc * a_desc;\n"); - for (i=0; i<argc; i++) { - printf("\t%s a_%s;\n", argtype[i], argname[i]); - } - printf("};\n"); - printf("extern struct vnodeop_desc %s_desc;\n", name); - # Prototype it. - protoarg = sprintf("int %s(", toupper(name)); - protolen = length(protoarg); - printf("%s", protoarg); - for (i=0; i<argc; i++) { - protoarg = sprintf("%s", argtype[i]); - if (i < (argc-1)) protoarg = (protoarg ", "); - arglen = length(protoarg); - if ((protolen + arglen) > 77) { - protoarg = ("\n " protoarg); - arglen += 4; - protolen = 0; - } - printf("%s", protoarg); - protolen += arglen; - } - printf(");\n"); -} -BEGIN { - arg0special=""; -} -END { - printf("\n/* Special cases: */\n#include <sys/buf.h>\n"); - argc=1; - argtype[0]="struct buf *"; - argname[0]="bp"; - shouldbelocked[0] = 0; - arg0special="->b_vp"; - name="vop_strategy"; - doit(); - name="vop_bwrite"; - doit(); -} -'"$awk_parser" | sed -e "$anal_retentive" - -# End stuff -echo ' -/* End of special cases. */' - - -# -# Redirect stdout to the C file. -# -echo "$0: Creating $out_c" 1>&2 -exec > $out_c - -# Begin stuff -echo -n "$warning" | sed -e 's/\$//g' -echo "" -echo -n "$copyright" -echo ' -#include <sys/param.h> -#include <sys/mount.h> -#include <sys/vnode.h> - -struct vnodeop_desc vop_default_desc = { - 0, - "default", - 0, -}; -' - -# Body stuff -sed -e "$sed_prep" $src | $awk ' -function doit() { - # Define F_desc - printf("struct vnodeop_desc %s_desc = {\n", name); - # offset - printf ("\t0,\n"); - # printable name - printf ("\t\"%s\",\n", name); - # flags - printf("\t0"); - vpnum = 0; - for (i=0; i<argc; i++) { - if (willrele[i]) { - if (willrele[i] == 2) { - word = "UNLOCK"; - } else if (willrele[i] == 3) { - word = "PUT"; - } else { - word = "RELE"; - } - if (argdir[i] ~ /OUT/) { - printf(" | VDESC_VPP_WILL%s", word); - } else { - printf(" | VDESC_VP%s_WILL%s", vpnum, word); - }; - vpnum++; - } - } - printf (",\n};\n"); - - # Define inline function. - printf("\nint %s(", toupper(name)); - desclen = 5 + length(name); - for (i=0; i<argc; i++) { - arglen = length(argtype[i]) + length(argname[i]); - - if (arglen + desclen > 77) { - printf("\n "); - arglen += 4; - desclen = 0; - } - printf("%s %s", argtype[i], argname[i]); - if (i < (argc-1)) { - printf(", "); - desclen += 2; - } - desclen += arglen; - } - printf(")\n"); - printf("{\n\tstruct %s_args a;\n", name); - printf("\ta.a_desc = VDESC(%s);\n", name); - for (i=0; i<argc; i++) { - printf("\ta.a_%s = %s;\n", argname[i], argname[i]); - if (shouldbelocked[i]) { - printf ("#ifdef VFSDEBUG\n"); - printf ("\tif ((%s->v_flag & VLOCKSWORK) && !VOP_ISLOCKED(%s))\n", argname[i], argname[i]); - printf ("\t\tpanic(\"%s: %s\");\n", name, argname[i]); - printf ("#endif\n"); - } - } - printf("\treturn (VCALL(%s%s, VOFFSET(%s), &a));\n}\n", - argname[0], arg0special, name); - -} -BEGIN { - arg0special=""; -} -END { - printf("\n/* Special cases: */\n"); - argc=1; - argtype[0]="struct buf *"; - argdir[0]="IN"; - argname[0]="bp"; - shouldbelocked[0] = 0; - arg0special="->b_vp"; - willrele[0]=0; - name="vop_strategy"; - doit(); - name="vop_bwrite"; - doit(); -} -'"$awk_parser" | sed -e "$anal_retentive" - -# End stuff -echo ' -/* End of special cases. */' - -# Add the vfs_op_descs array to the C file. -# Begin stuff -echo ' -struct vnodeop_desc *vfs_op_descs[] = { - &vop_default_desc, /* MUST BE FIRST */ - &vop_strategy_desc, /* XXX: SPECIAL CASE */ - &vop_bwrite_desc, /* XXX: SPECIAL CASE */ -' - -# Body stuff -sed -e "$sed_prep" $src | $awk ' -function doit() { - printf("\t&%s_desc,\n", name); -} -'"$awk_parser" - -# End stuff -echo ' NULL -}; -' - -exit 0 - -# Local Variables: -# tab-width: 4 -# End: diff --git a/sys/kern/vnode_if.src b/sys/kern/vnode_if.src deleted file mode 100644 index b15a3fd991f..00000000000 --- a/sys/kern/vnode_if.src +++ /dev/null @@ -1,439 +0,0 @@ -# $OpenBSD: vnode_if.src,v 1.32 2007/01/16 17:52:18 thib Exp $ -# $NetBSD: vnode_if.src,v 1.10 1996/05/11 18:26:27 mycroft 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. 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.3 (Berkeley) 2/3/94 -# - - -# -# 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. -# - - -# -#% islocked vp = = = -# -vop_islocked { - IN struct vnode *vp; -}; - -# -#% lookup dvp L ? ? -#% lookup vpp - L - -# -# -# Note that EJUSTRETURN is not considered an error condition for locking -# purposes. -# -# if both ISLASTCN and LOCKPARENT are set in cnp->cn_flags then -# -# dvp L L L* -# -# otherwise, -# -# dvp L U L* -# -# * The lock state on return is indeterminate since the lookup implementations -# unlock and relock the vnode (an operation which is not guaranteed to -# succeed). However, these types of failures should be rare. Unfortunately, -# they are currently undetectable. -# - -vop_lookup { - IN struct vnode *dvp; - INOUT struct vnode **vpp; - IN struct componentname *cnp; -}; - -# -#% create dvp L U U -#% create vpp - L - -# - -vop_create { - IN SHOULDBELOCKED WILLPUT struct vnode *dvp; - OUT struct vnode **vpp; - IN struct componentname *cnp; - IN struct vattr *vap; -}; - -# -#% mknod dvp L U U -#% mknod vpp - X - -# - -vop_mknod { - IN SHOULDBELOCKED WILLPUT struct vnode *dvp; - OUT WILLRELE struct vnode **vpp; - IN struct componentname *cnp; - IN struct vattr *vap; -}; - -# -#% open vp = = = -# - -vop_open { - IN struct vnode *vp; - IN int mode; - IN struct ucred *cred; - IN struct proc *p; -}; - -# -#% close vp L L L -# - -vop_close { - IN SHOULDBELOCKED struct vnode *vp; - IN int fflag; - IN struct ucred *cred; - IN struct proc *p; -}; - -# -#% access vp L L L -# - -vop_access { - IN SHOULDBELOCKED struct vnode *vp; - IN int mode; - IN struct ucred *cred; - IN struct proc *p; -}; - -# -#% getattr vp = = = -# - -vop_getattr { - IN struct vnode *vp; - IN struct vattr *vap; - IN struct ucred *cred; - IN struct proc *p; -}; - - -# -#% setattr vp L L L -# - -vop_setattr { - IN SHOULDBELOCKED struct vnode *vp; - IN struct vattr *vap; - IN struct ucred *cred; - IN struct proc *p; -}; - -# -#% read vp L L L -# - -vop_read { - IN SHOULDBELOCKED struct vnode *vp; - INOUT struct uio *uio; - IN int ioflag; - IN struct ucred *cred; -}; - -# -#% write vp L L L -# - -vop_write { - IN SHOULDBELOCKED struct vnode *vp; - INOUT struct uio *uio; - IN int ioflag; - IN struct ucred *cred; -}; - -# -#% ioctl vp U U U -# - -vop_ioctl { - IN struct vnode *vp; - IN u_long command; - IN void *data; - IN int fflag; - IN struct ucred *cred; - IN struct proc *p; -}; - -# -#% poll vp U U U -# -vop_poll { - IN struct vnode *vp; - IN int events; - IN struct proc *p; -}; - -# -#% kqfilter vp U U U -# -vop_kqfilter { - IN struct vnode *vp; - IN struct knote *kn; -}; - -# -#% revoke vp U U U -# -vop_revoke { - IN struct vnode *vp; - IN int flags; -}; - -# -#% fsync vp L L L -# -vop_fsync { - IN SHOULDBELOCKED struct vnode *vp; - IN struct ucred *cred; - IN int waitfor; - IN struct proc *p; -}; - -# -#% remove dvp L U U -#% remove vp L U U -# - -vop_remove { - IN SHOULDBELOCKED WILLPUT struct vnode *dvp; - IN SHOULDBELOCKED WILLPUT struct vnode *vp; - IN struct componentname *cnp; -}; - -# -#% link dvp L U U -#% link vp U U U -# -vop_link { - IN SHOULDBELOCKED WILLPUT struct vnode *dvp; - IN 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 -# - -vop_rename { - IN WILLRELE struct vnode *fdvp; - IN WILLRELE struct vnode *fvp; - IN struct componentname *fcnp; - IN SHOULDBELOCKED WILLPUT struct vnode *tdvp; - IN WILLRELE struct vnode *tvp; - IN struct componentname *tcnp; -}; - -# -#% mkdir dvp L U U -#% mkdir vpp - L - -# - -vop_mkdir { - IN SHOULDBELOCKED WILLPUT struct vnode *dvp; - OUT struct vnode **vpp; - IN struct componentname *cnp; - IN struct vattr *vap; -}; - -# -#% rmdir dvp L U U -#% rmdir vp L U U -# - -vop_rmdir { - IN SHOULDBELOCKED WILLPUT struct vnode *dvp; - IN SHOULDBELOCKED WILLPUT struct vnode *vp; - IN struct componentname *cnp; -}; - -# -#% symlink dvp L U U -#% symlink vpp - U - -# -# XXX - note that the return vnode has already been VRELE'ed -# by the filesystem layer. To use it you must use vget, -# possibly with a further namei. -# - -vop_symlink { - IN SHOULDBELOCKED WILLPUT struct vnode *dvp; - OUT WILLRELE struct vnode **vpp; - IN struct componentname *cnp; - IN struct vattr *vap; - IN char *target; -}; - -# -#% readdir vp L L L -# - -vop_readdir { - IN SHOULDBELOCKED struct vnode *vp; - INOUT struct uio *uio; - IN struct ucred *cred; - INOUT int *eofflag; - OUT int *ncookies; - INOUT u_long **cookies; -}; - -# -#% readlink vp L L L -# -vop_readlink { - IN SHOULDBELOCKED struct vnode *vp; - INOUT struct uio *uio; - IN struct ucred *cred; -}; - -# -#% abortop dvp = = = -# -vop_abortop { - IN struct vnode *dvp; - IN struct componentname *cnp; -}; - - -# -#% inactive vp L U U -# -vop_inactive { - IN SHOULDBELOCKED WILLUNLOCK struct vnode *vp; - IN struct proc *p; -}; - -# -#% reclaim vp U U U -# - -vop_reclaim { - IN struct vnode *vp; - IN struct proc *p; -}; - -# -#% lock vp U L U -# - -vop_lock { - IN struct vnode *vp; - IN int flags; - IN struct proc *p; -}; - -# -#% unlock vp L U L -# - -vop_unlock { - IN struct vnode *vp; - IN int flags; - IN struct proc *p; -}; - -# -#% bmap vp L L L -#% bmap vpp - U - -# - -vop_bmap { - IN SHOULDBELOCKED struct vnode *vp; - IN daddr64_t bn; - OUT struct vnode **vpp; - IN daddr64_t *bnp; - OUT int *runp; -}; - -# -# Needs work: no vp? -# -#vop_strategy { -# IN struct buf *bp; -#}; - -# -#% print vp = = = -# -vop_print { - IN struct vnode *vp; -}; -# -#% pathconf vp L L L -# -vop_pathconf { - IN SHOULDBELOCKED struct vnode *vp; - IN int name; - OUT register_t *retval; -}; - -# -#% advlock vp U U U -# -vop_advlock { - IN struct vnode *vp; - IN void *id; - IN int op; - IN struct flock *fl; - IN int flags; -}; - -# -#% reallocblks vp L L L -# -vop_reallocblks { - IN SHOULDBELOCKED struct vnode *vp; - IN struct cluster_save *buflist; -}; - -# Needs work: no vp? -#vop_bwrite { -# IN struct buf *bp; -#}; |