vnode_if.h

来自「基于组件方式开发操作系统的OSKIT源代码」· C头文件 代码 · 共 1,041 行 · 第 1/2 页

H
1,041
字号
/* * Warning: This file is generated automatically. * (Modifications made here may easily be lost!) * * Created from the file: *	NetBSD: vnode_if.src,v 1.10 1996/05/11 18:26:27 mycroft Exp  * by the script: *	NetBSD: vnode_if.sh,v 1.9 1996/02/29 20:58:22 cgd 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. */extern struct vnodeop_desc vop_default_desc;struct vop_lookup_args {	struct vnodeop_desc *a_desc;	struct vnode *a_dvp;	struct vnode **a_vpp;	struct componentname *a_cnp;};extern struct vnodeop_desc vop_lookup_desc;static __inline int VOP_LOOKUP __P((struct vnode *, struct vnode **,     struct componentname *));static __inline int VOP_LOOKUP(dvp, vpp, cnp)	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 vop_create_args {	struct vnodeop_desc *a_desc;	struct vnode *a_dvp;	struct vnode **a_vpp;	struct componentname *a_cnp;	struct vattr *a_vap;};extern struct vnodeop_desc vop_create_desc;static __inline int VOP_CREATE __P((struct vnode *, struct vnode **,     struct componentname *, struct vattr *));static __inline int VOP_CREATE(dvp, vpp, cnp, vap)	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;	a.a_vpp = vpp;	a.a_cnp = cnp;	a.a_vap = vap;	return (VCALL(dvp, VOFFSET(vop_create), &a));}struct vop_mknod_args {	struct vnodeop_desc *a_desc;	struct vnode *a_dvp;	struct vnode **a_vpp;	struct componentname *a_cnp;	struct vattr *a_vap;};extern struct vnodeop_desc vop_mknod_desc;static __inline int VOP_MKNOD __P((struct vnode *, struct vnode **,     struct componentname *, struct vattr *));static __inline int VOP_MKNOD(dvp, vpp, cnp, vap)	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;	a.a_vpp = vpp;	a.a_cnp = cnp;	a.a_vap = vap;	return (VCALL(dvp, VOFFSET(vop_mknod), &a));}struct vop_open_args {	struct vnodeop_desc *a_desc;	struct vnode *a_vp;	int a_mode;	struct ucred *a_cred;	struct proc *a_p;};extern struct vnodeop_desc vop_open_desc;static __inline int VOP_OPEN __P((struct vnode *, int, struct ucred *,     struct proc *));static __inline int VOP_OPEN(vp, mode, cred, p)	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 vop_close_args {	struct vnodeop_desc *a_desc;	struct vnode *a_vp;	int a_fflag;	struct ucred *a_cred;	struct proc *a_p;};extern struct vnodeop_desc vop_close_desc;static __inline int VOP_CLOSE __P((struct vnode *, int, struct ucred *,     struct proc *));static __inline int VOP_CLOSE(vp, fflag, cred, p)	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;	a.a_fflag = fflag;	a.a_cred = cred;	a.a_p = p;	return (VCALL(vp, VOFFSET(vop_close), &a));}struct vop_access_args {	struct vnodeop_desc *a_desc;	struct vnode *a_vp;	int a_mode;	struct ucred *a_cred;	struct proc *a_p;};extern struct vnodeop_desc vop_access_desc;static __inline int VOP_ACCESS __P((struct vnode *, int, struct ucred *,     struct proc *));static __inline int VOP_ACCESS(vp, mode, cred, p)	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;	a.a_mode = mode;	a.a_cred = cred;	a.a_p = p;	return (VCALL(vp, VOFFSET(vop_access), &a));}struct vop_getattr_args {	struct vnodeop_desc *a_desc;	struct vnode *a_vp;	struct vattr *a_vap;	struct ucred *a_cred;	struct proc *a_p;};extern struct vnodeop_desc vop_getattr_desc;static __inline int VOP_GETATTR __P((struct vnode *, struct vattr *,     struct ucred *, struct proc *));static __inline int VOP_GETATTR(vp, vap, cred, p)	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 vop_setattr_args {	struct vnodeop_desc *a_desc;	struct vnode *a_vp;	struct vattr *a_vap;	struct ucred *a_cred;	struct proc *a_p;};extern struct vnodeop_desc vop_setattr_desc;static __inline int VOP_SETATTR __P((struct vnode *, struct vattr *,     struct ucred *, struct proc *));static __inline int VOP_SETATTR(vp, vap, cred, p)	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;	a.a_vap = vap;	a.a_cred = cred;	a.a_p = p;	return (VCALL(vp, VOFFSET(vop_setattr), &a));}struct vop_read_args {	struct vnodeop_desc *a_desc;	struct vnode *a_vp;	struct uio *a_uio;	int a_ioflag;	struct ucred *a_cred;};extern struct vnodeop_desc vop_read_desc;static __inline int VOP_READ __P((struct vnode *, struct uio *, int,     struct ucred *));static __inline int VOP_READ(vp, uio, ioflag, cred)	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;	a.a_uio = uio;	a.a_ioflag = ioflag;	a.a_cred = cred;	return (VCALL(vp, VOFFSET(vop_read), &a));}struct vop_write_args {	struct vnodeop_desc *a_desc;	struct vnode *a_vp;	struct uio *a_uio;	int a_ioflag;	struct ucred *a_cred;};extern struct vnodeop_desc vop_write_desc;static __inline int VOP_WRITE __P((struct vnode *, struct uio *, int,     struct ucred *));static __inline int VOP_WRITE(vp, uio, ioflag, cred)	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;	a.a_uio = uio;	a.a_ioflag = ioflag;	a.a_cred = cred;	return (VCALL(vp, VOFFSET(vop_write), &a));}struct vop_ioctl_args {	struct vnodeop_desc *a_desc;	struct vnode *a_vp;	u_long a_command;	caddr_t a_data;	int a_fflag;	struct ucred *a_cred;	struct proc *a_p;};extern struct vnodeop_desc vop_ioctl_desc;static __inline int VOP_IOCTL __P((struct vnode *, u_long, caddr_t, int,     struct ucred *, struct proc *));static __inline int VOP_IOCTL(vp, command, data, fflag, cred, p)	struct vnode *vp;	u_long command;	caddr_t 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 vop_select_args {	struct vnodeop_desc *a_desc;	struct vnode *a_vp;	int a_which;	int a_fflags;	struct ucred *a_cred;	struct proc *a_p;};extern struct vnodeop_desc vop_select_desc;static __inline int VOP_SELECT __P((struct vnode *, int, int,     struct ucred *, struct proc *));static __inline int VOP_SELECT(vp, which, fflags, cred, p)	struct vnode *vp;	int which;	int fflags;	struct ucred *cred;	struct proc *p;{	struct vop_select_args a;	a.a_desc = VDESC(vop_select);	a.a_vp = vp;	a.a_which = which;	a.a_fflags = fflags;	a.a_cred = cred;	a.a_p = p;	return (VCALL(vp, VOFFSET(vop_select), &a));}struct vop_mmap_args {	struct vnodeop_desc *a_desc;	struct vnode *a_vp;	int a_fflags;	struct ucred *a_cred;	struct proc *a_p;};extern struct vnodeop_desc vop_mmap_desc;static __inline int VOP_MMAP __P((struct vnode *, int, struct ucred *,     struct proc *));static __inline int VOP_MMAP(vp, fflags, cred, p)	struct vnode *vp;	int fflags;	struct ucred *cred;	struct proc *p;{	struct vop_mmap_args a;	a.a_desc = VDESC(vop_mmap);	a.a_vp = vp;	a.a_fflags = fflags;	a.a_cred = cred;	a.a_p = p;	return (VCALL(vp, VOFFSET(vop_mmap), &a));}struct vop_fsync_args {	struct vnodeop_desc *a_desc;	struct vnode *a_vp;	struct ucred *a_cred;	int a_waitfor;	struct proc *a_p;};extern struct vnodeop_desc vop_fsync_desc;static __inline int VOP_FSYNC __P((struct vnode *, struct ucred *, int,     struct proc *));static __inline int VOP_FSYNC(vp, cred, waitfor, p)	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;	a.a_cred = cred;	a.a_waitfor = waitfor;	a.a_p = p;	return (VCALL(vp, VOFFSET(vop_fsync), &a));}struct vop_seek_args {	struct vnodeop_desc *a_desc;	struct vnode *a_vp;	off_t a_oldoff;	off_t a_newoff;	struct ucred *a_cred;};extern struct vnodeop_desc vop_seek_desc;static __inline int VOP_SEEK __P((struct vnode *, off_t, off_t,     struct ucred *));static __inline int VOP_SEEK(vp, oldoff, newoff, cred)	struct vnode *vp;	off_t oldoff;	off_t newoff;	struct ucred *cred;{	struct vop_seek_args a;	a.a_desc = VDESC(vop_seek);	a.a_vp = vp;	a.a_oldoff = oldoff;	a.a_newoff = newoff;	a.a_cred = cred;	return (VCALL(vp, VOFFSET(vop_seek), &a));}struct vop_remove_args {	struct vnodeop_desc *a_desc;	struct vnode *a_dvp;	struct vnode *a_vp;	struct componentname *a_cnp;};extern struct vnodeop_desc vop_remove_desc;static __inline int VOP_REMOVE __P((struct vnode *, struct vnode *,     struct componentname *));static __inline int VOP_REMOVE(dvp, vp, cnp)	struct vnode *dvp;	struct vnode *vp;	struct componentname *cnp;{	struct vop_remove_args a;	a.a_desc = VDESC(vop_remove);	a.a_dvp = dvp;	a.a_vp = vp;	a.a_cnp = cnp;	return (VCALL(dvp, VOFFSET(vop_remove), &a));}struct vop_link_args {	struct vnodeop_desc *a_desc;	struct vnode *a_dvp;	struct vnode *a_vp;	struct componentname *a_cnp;};extern struct vnodeop_desc vop_link_desc;static __inline int VOP_LINK __P((struct vnode *, struct vnode *,     struct componentname *));static __inline int VOP_LINK(dvp, vp, cnp)	struct vnode *dvp;	struct vnode *vp;	struct componentname *cnp;{	struct vop_link_args a;	a.a_desc = VDESC(vop_link);	a.a_dvp = dvp;	a.a_vp = vp;	a.a_cnp = cnp;	return (VCALL(dvp, VOFFSET(vop_link), &a));}struct vop_rename_args {	struct vnodeop_desc *a_desc;	struct vnode *a_fdvp;	struct vnode *a_fvp;	struct componentname *a_fcnp;	struct vnode *a_tdvp;	struct vnode *a_tvp;	struct componentname *a_tcnp;};extern struct vnodeop_desc vop_rename_desc;static __inline int VOP_RENAME __P((struct vnode *, struct vnode *,     struct componentname *, struct vnode *, struct vnode *,     struct componentname *));static __inline int VOP_RENAME(fdvp, fvp, fcnp, tdvp, tvp, tcnp)	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;	a.a_tvp = tvp;	a.a_tcnp = tcnp;	return (VCALL(fdvp, VOFFSET(vop_rename), &a));}struct vop_mkdir_args {	struct vnodeop_desc *a_desc;	struct vnode *a_dvp;	struct vnode **a_vpp;	struct componentname *a_cnp;	struct vattr *a_vap;};extern struct vnodeop_desc vop_mkdir_desc;static __inline int VOP_MKDIR __P((struct vnode *, struct vnode **,     struct componentname *, struct vattr *));static __inline int VOP_MKDIR(dvp, vpp, cnp, vap)	struct vnode *dvp;	struct vnode **vpp;	struct componentname *cnp;	struct vattr *vap;{	struct vop_mkdir_args a;	a.a_desc = VDESC(vop_mkdir);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?