diff options
| author | yamt <yamt@NetBSD.org> | 2005-11-02 12:38:58 +0000 |
|---|---|---|
| committer | yamt <yamt@NetBSD.org> | 2005-11-02 12:38:58 +0000 |
| commit | a748ea88dd717432ed104bd0921eb5a46d0ee55a (patch) | |
| tree | 55bd41f2b1ac9cf9f2cbab77ccf2f9c7aaf449b2 /sys/kern/vnode_if.src | |
| parent | 73370bbcf4e70d291cbe52c398b04e2670589057 (diff) | |
merge yamt-vop branch. remove following VOPs.
VOP_BLKATOFF
VOP_VALLOC
VOP_BALLOC
VOP_REALLOCBLKS
VOP_VFREE
VOP_TRUNCATE
VOP_UPDATE
Diffstat (limited to 'sys/kern/vnode_if.src')
| -rw-r--r-- | sys/kern/vnode_if.src | 72 |
1 files changed, 1 insertions, 71 deletions
diff --git a/sys/kern/vnode_if.src b/sys/kern/vnode_if.src index 17ce87f1595..88ba86922cc 100644 --- a/sys/kern/vnode_if.src +++ b/sys/kern/vnode_if.src @@ -1,4 +1,4 @@ -# $NetBSD: vnode_if.src,v 1.45 2005/09/25 12:50:14 isaki Exp $ +# $NetBSD: vnode_if.src,v 1.46 2005/11/02 12:38:59 yamt Exp $ # # Copyright (c) 1992, 1993 # The Regents of the University of California. All rights reserved. @@ -476,76 +476,6 @@ vop_advlock { IN int flags; }; -# -#% blkatoff vp L L L -# -vop_blkatoff { - IN LOCKED=YES struct vnode *vp; - IN off_t offset; - OUT char **res; - OUT struct buf **bpp; -}; - -# -#% valloc pvp L L L -# -vop_valloc { - IN LOCKED=YES struct vnode *pvp; - IN int mode; - IN struct ucred *cred; - OUT struct vnode **vpp; -}; - -# -#% balloc vp L L L -# -vop_balloc { - IN LOCKED=YES struct vnode *vp; - IN off_t startoffset; - IN int size; - IN struct ucred *cred; - IN int flags; - OUT struct buf **bpp; -}; - -# -#% reallocblks vp L L L -# -vop_reallocblks { - IN LOCKED=YES struct vnode *vp; - IN struct cluster_save *buflist; -}; - -# -#% vfree pvp L L L -# -vop_vfree { - IN LOCKED=YES struct vnode *pvp; - IN ino_t ino; - IN int mode; -}; - -# -#% truncate vp L L L -# -vop_truncate { - IN LOCKED=YES struct vnode *vp; - IN off_t length; - IN int flags; - IN struct ucred *cred; - IN struct proc *p; -}; - -# -#% update vp L L L -# -vop_update { - IN LOCKED=YES struct vnode *vp; - IN struct timespec *access; - IN struct timespec *modify; - IN int flags; -}; - # #% lease vp = = = # |
