Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/chs-ubc2]: src/sys/kern Update from trunk.
details: https://anonhg.NetBSD.org/src/rev/1cab3ce63338
branches: chs-ubc2
changeset: 471439:1cab3ce63338
user: thorpej <thorpej%NetBSD.org@localhost>
date: Mon Aug 02 22:18:34 1999 +0000
description:
Update from trunk.
diffstat:
sys/kern/vnode_if.src | 24 ++++++++++++------------
1 files changed, 12 insertions(+), 12 deletions(-)
diffs (94 lines):
diff -r 258115443fd3 -r 1cab3ce63338 sys/kern/vnode_if.src
--- a/sys/kern/vnode_if.src Mon Aug 02 22:17:30 1999 +0000
+++ b/sys/kern/vnode_if.src Mon Aug 02 22:18:34 1999 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: vnode_if.src,v 1.16.4.4 1999/07/31 18:40:02 chs Exp $
+# $NetBSD: vnode_if.src,v 1.16.4.5 1999/08/02 22:18:34 thorpej Exp $
#
# Copyright (c) 1992, 1993
# The Regents of the University of California. All rights reserved.
@@ -83,7 +83,7 @@
#% 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 @@
#% 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 @@
#% 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 @@
#% 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 @@
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 @@
#% 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 @@
#% 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 @@
# 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 @@
#% inactive vp L U U
#
vop_inactive {
- IN struct vnode *vp;
+ IN WILLUNLOCK struct vnode *vp;
IN struct proc *p;
};
Home |
Main Index |
Thread Index |
Old Index