vnode_if.h

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

H
1,685
字号
/*	$NetBSD: vnode_if.h,v 1.26 2000/11/27 09:04:59 chs Exp $	*//* * Warning: This file is generated automatically. * (Modifications made here may easily be lost!) * * Created from the file: *	NetBSD: vnode_if.src,v 1.26 2000/11/27 08:39:45 chs Exp  * by the script: *	NetBSD: vnode_if.sh,v 1.21 2000/09/13 16:09:27 thorpej Exp  *//* * Copyright (c) 1992, 1993, 1994, 1995 *	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. */#ifndef _SYS_VNODE_IF_H_#define _SYS_VNODE_IF_H_#ifdef _KERNEL#ifdef _LKM/* LKMs always use non-inlined vnode ops. */#define	VNODE_OP_NOINLINE#else#include "opt_vnode_op_noinline.h"#endif#endif /* _KERNEL */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;#ifndef VNODE_OP_NOINLINEstatic __inline#endifint VOP_LOOKUP(struct vnode *, struct vnode **, struct componentname *)#ifndef VNODE_OP_NOINLINE__attribute__((__unused__))#endif;#ifndef VNODE_OP_NOINLINEstatic __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));}#endifstruct 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;#ifndef VNODE_OP_NOINLINEstatic __inline#endifint VOP_CREATE(struct vnode *, struct vnode **, struct componentname *,     struct vattr *)#ifndef VNODE_OP_NOINLINE__attribute__((__unused__))#endif;#ifndef VNODE_OP_NOINLINEstatic __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));}#endifstruct 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;#ifndef VNODE_OP_NOINLINEstatic __inline#endifint VOP_MKNOD(struct vnode *, struct vnode **, struct componentname *,     struct vattr *)#ifndef VNODE_OP_NOINLINE__attribute__((__unused__))#endif;#ifndef VNODE_OP_NOINLINEstatic __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));}#endifstruct 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;#ifndef VNODE_OP_NOINLINEstatic __inline#endifint VOP_OPEN(struct vnode *, int, struct ucred *, struct proc *)#ifndef VNODE_OP_NOINLINE__attribute__((__unused__))#endif;#ifndef VNODE_OP_NOINLINEstatic __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));}#endifstruct 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;#ifndef VNODE_OP_NOINLINEstatic __inline#endifint VOP_CLOSE(struct vnode *, int, struct ucred *, struct proc *)#ifndef VNODE_OP_NOINLINE__attribute__((__unused__))#endif;#ifndef VNODE_OP_NOINLINEstatic __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));}#endifstruct 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;#ifndef VNODE_OP_NOINLINEstatic __inline#endifint VOP_ACCESS(struct vnode *, int, struct ucred *, struct proc *)#ifndef VNODE_OP_NOINLINE__attribute__((__unused__))#endif;#ifndef VNODE_OP_NOINLINEstatic __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));}#endifstruct 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;#ifndef VNODE_OP_NOINLINEstatic __inline#endifint VOP_GETATTR(struct vnode *, struct vattr *, struct ucred *, struct proc *)#ifndef VNODE_OP_NOINLINE__attribute__((__unused__))#endif;#ifndef VNODE_OP_NOINLINEstatic __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));}#endifstruct 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;#ifndef VNODE_OP_NOINLINEstatic __inline#endifint VOP_SETATTR(struct vnode *, struct vattr *, struct ucred *, struct proc *)#ifndef VNODE_OP_NOINLINE__attribute__((__unused__))#endif;#ifndef VNODE_OP_NOINLINEstatic __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));}#endifstruct 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;#ifndef VNODE_OP_NOINLINEstatic __inline#endifint VOP_READ(struct vnode *, struct uio *, int, struct ucred *)#ifndef VNODE_OP_NOINLINE__attribute__((__unused__))#endif;#ifndef VNODE_OP_NOINLINEstatic __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));}#endifstruct 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;#ifndef VNODE_OP_NOINLINEstatic __inline#endifint VOP_WRITE(struct vnode *, struct uio *, int, struct ucred *)#ifndef VNODE_OP_NOINLINE__attribute__((__unused__))#endif;#ifndef VNODE_OP_NOINLINEstatic __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));}#endifstruct 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;#ifndef VNODE_OP_NOINLINEstatic __inline#endifint VOP_IOCTL(struct vnode *, u_long, caddr_t, int, struct ucred *,     struct proc *)#ifndef VNODE_OP_NOINLINE__attribute__((__unused__))#endif;#ifndef VNODE_OP_NOINLINEstatic __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));}#endifstruct vop_fcntl_args {	struct vnodeop_desc *a_desc;	struct vnode *a_vp;	u_int a_command;	caddr_t a_data;	int a_fflag;	struct ucred *a_cred;	struct proc *a_p;};extern struct vnodeop_desc vop_fcntl_desc;#ifndef VNODE_OP_NOINLINEstatic __inline#endifint VOP_FCNTL(struct vnode *, u_int, caddr_t, int, struct ucred *,     struct proc *)#ifndef VNODE_OP_NOINLINE__attribute__((__unused__))#endif;#ifndef VNODE_OP_NOINLINEstatic __inline int VOP_FCNTL(vp, command, data, fflag, cred, p)	struct vnode *vp;	u_int command;	caddr_t data;	int fflag;	struct ucred *cred;	struct proc *p;{	struct vop_fcntl_args a;	a.a_desc = VDESC(vop_fcntl);	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_fcntl), &a));}#endifstruct vop_poll_args {	struct vnodeop_desc *a_desc;	struct vnode *a_vp;	int a_events;	struct proc *a_p;};extern struct vnodeop_desc vop_poll_desc;#ifndef VNODE_OP_NOINLINEstatic __inline#endifint VOP_POLL(struct vnode *, int, struct proc *)#ifndef VNODE_OP_NOINLINE__attribute__((__unused__))#endif;#ifndef VNODE_OP_NOINLINEstatic __inline int VOP_POLL(vp, events, p)	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));}#endifstruct vop_revoke_args {	struct vnodeop_desc *a_desc;	struct vnode *a_vp;	int a_flags;};extern struct vnodeop_desc vop_revoke_desc;#ifndef VNODE_OP_NOINLINEstatic __inline#endifint VOP_REVOKE(struct vnode *, int)#ifndef VNODE_OP_NOINLINE__attribute__((__unused__))#endif;#ifndef VNODE_OP_NOINLINEstatic __inline int VOP_REVOKE(vp, flags)	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));}#endifstruct 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;#ifndef VNODE_OP_NOINLINEstatic __inline#endifint VOP_MMAP(struct vnode *, int, struct ucred *, struct proc *)#ifndef VNODE_OP_NOINLINE__attribute__((__unused__))#endif;#ifndef VNODE_OP_NOINLINEstatic __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));}#endifstruct vop_fsync_args {	struct vnodeop_desc *a_desc;	struct vnode *a_vp;

⌨️ 快捷键说明

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