diff options
Diffstat (limited to 'sys/kern/vnode_if.src')
-rw-r--r-- | sys/kern/vnode_if.src | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/sys/kern/vnode_if.src b/sys/kern/vnode_if.src index 37ef15a..c5f1094 100644 --- a/sys/kern/vnode_if.src +++ b/sys/kern/vnode_if.src @@ -31,7 +31,7 @@ # SUCH DAMAGE. # # @(#)vnode_if.src 8.3 (Berkeley) 2/3/94 -# $Id: vnode_if.src,v 1.4 1995/06/28 07:06:41 davidg Exp $ +# $Id: vnode_if.src,v 1.5 1995/07/07 13:41:28 davidg Exp $ # vop_lookup { IN struct vnode *dvp; @@ -148,15 +148,11 @@ vop_remove { IN struct componentname *cnp; }; -# Gack. The generated VCALL uses the first vp which might -# not be handled by the same FS as the directory (e.g. special -# device files)...so it's special-cased. -# -#vop_link { -# IN struct vnode *vp; -# IN WILLRELE struct vnode *tdvp; -# IN struct componentname *cnp; -#}; +vop_link { + IN WILLRELE struct vnode *tdvp; + IN struct vnode *vp; + IN struct componentname *cnp; +}; vop_rename { IN WILLRELE struct vnode *fdvp; |