Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/sys/kern/vnode_if.src,v rcsdiff: /ftp/cvs/cvsroot/src/sys/kern/vnode_if.src,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.17 retrieving revision 1.18 diff -u -p -r1.17 -r1.18 --- src/sys/kern/vnode_if.src 1999/06/21 02:28:46 1.17 +++ src/sys/kern/vnode_if.src 1999/07/07 23:32:50 1.18 @@ -1,4 +1,4 @@ -# $NetBSD: vnode_if.src,v 1.17 1999/06/21 02:28:46 sommerfeld Exp $ +# $NetBSD: vnode_if.src,v 1.18 1999/07/07 23:32:50 wrstuden Exp $ # # Copyright (c) 1992, 1993 # The Regents of the University of California. All rights reserved. @@ -83,7 +83,7 @@ vop_lookup { #% create vpp - L - # vop_create { - IN WILLRELE struct vnode *dvp; + IN WILLPUT struct vnode *dvp; OUT struct vnode **vpp; IN struct componentname *cnp; IN struct vattr *vap; @@ -94,7 +94,7 @@ vop_create { #% mknod vpp - X - # vop_mknod { - IN WILLRELE struct vnode *dvp; + IN WILLPUT struct vnode *dvp; OUT WILLRELE struct vnode **vpp; IN struct componentname *cnp; IN struct vattr *vap; @@ -234,8 +234,8 @@ vop_seek { #% remove vp L U U # vop_remove { - IN WILLRELE struct vnode *dvp; - IN WILLRELE struct vnode *vp; + IN WILLPUT struct vnode *dvp; + IN WILLPUT struct vnode *vp; IN struct componentname *cnp; }; @@ -244,7 +244,7 @@ vop_remove { #% link tdvp L U U # vop_link { - IN WILLRELE struct vnode *dvp; + IN WILLPUT struct vnode *dvp; IN struct vnode *vp; IN struct componentname *cnp; }; @@ -259,7 +259,7 @@ vop_rename { IN WILLRELE struct vnode *fdvp; IN WILLRELE struct vnode *fvp; IN struct componentname *fcnp; - IN WILLRELE struct vnode *tdvp; + IN WILLPUT struct vnode *tdvp; IN WILLRELE struct vnode *tvp; IN struct componentname *tcnp; }; @@ -269,7 +269,7 @@ vop_rename { #% mkdir vpp - L - # vop_mkdir { - IN WILLRELE struct vnode *dvp; + IN WILLPUT struct vnode *dvp; OUT struct vnode **vpp; IN struct componentname *cnp; IN struct vattr *vap; @@ -280,8 +280,8 @@ vop_mkdir { #% rmdir vp L U U # vop_rmdir { - IN WILLRELE struct vnode *dvp; - IN WILLRELE struct vnode *vp; + IN WILLPUT struct vnode *dvp; + IN WILLPUT struct vnode *vp; IN struct componentname *cnp; }; @@ -294,7 +294,7 @@ vop_rmdir { # possibly with a further namei. # vop_symlink { - IN WILLRELE struct vnode *dvp; + IN WILLPUT struct vnode *dvp; OUT WILLRELE struct vnode **vpp; IN struct componentname *cnp; IN struct vattr *vap; @@ -334,7 +334,7 @@ vop_abortop { #% inactive vp L U U # vop_inactive { - IN struct vnode *vp; + IN WILLUNLOCK struct vnode *vp; IN struct proc *p; };