summaryrefslogtreecommitdiffstats
path: root/sys/coda/coda_vnops.c
diff options
context:
space:
mode:
authoreivind <eivind@FreeBSD.org>1999-01-05 18:50:03 +0000
committereivind <eivind@FreeBSD.org>1999-01-05 18:50:03 +0000
commitffaaca5874a2e0b773197f6c600449c2e383d5d8 (patch)
tree13d64daa5c3318e5f867c379131d01f501b43cf2 /sys/coda/coda_vnops.c
parentdf5bc79a55b9ca8e81f3226a0aa586376a009337 (diff)
downloadFreeBSD-src-ffaaca5874a2e0b773197f6c600449c2e383d5d8.zip
FreeBSD-src-ffaaca5874a2e0b773197f6c600449c2e383d5d8.tar.gz
Remove the 'waslocked' parameter to vfs_object_create().
Diffstat (limited to 'sys/coda/coda_vnops.c')
-rw-r--r--sys/coda/coda_vnops.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/sys/coda/coda_vnops.c b/sys/coda/coda_vnops.c
index a833e7f..7bd467a 100644
--- a/sys/coda/coda_vnops.c
+++ b/sys/coda/coda_vnops.c
@@ -27,7 +27,7 @@
* Mellon the rights to redistribute these changes without encumbrance.
*
* @(#) src/sys/coda/coda_vnops.c,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $
- * $Id: coda_vnops.c,v 1.9 1998/11/16 19:48:26 rvb Exp $
+ * $Id: coda_vnops.c,v 1.10 1998/12/04 18:44:21 rvb Exp $
*
*/
@@ -48,6 +48,9 @@
/*
* HISTORY
* $Log: coda_vnops.c,v $
+ * Revision 1.10 1998/12/04 18:44:21 rvb
+ * Don't print diagnostic anymore
+ *
* Revision 1.9 1998/11/16 19:48:26 rvb
* A few bug fixes for Robert Watson
*
@@ -502,7 +505,7 @@ coda_open(v)
}
/* grab (above) does this when it calls newvnode unless it's in the cache*/
if (vp->v_type == VREG) {
- error = vfs_object_create(vp, p, cred, 1);
+ error = vfs_object_create(vp, p, cred);
if (error != 0) {
printf("coda_open: vfs_object_create() returns %d\n", error);
vput(vp);
@@ -662,7 +665,7 @@ printf("coda_rdwr: Internally Opening %p\n", vp);
return (error);
}
if (vp->v_type == VREG) {
- error = vfs_object_create(vp, p, cred, 1);
+ error = vfs_object_create(vp, p, cred);
if (error != 0) {
printf("coda_rdwr: vfs_object_create() returns %d\n", error);
vput(vp);
@@ -1885,7 +1888,7 @@ printf("coda_readdir: Internally Opening %p\n", vp);
return (error);
}
if (vp->v_type == VREG) {
- error = vfs_object_create(vp, p, cred, 1);
+ error = vfs_object_create(vp, p, cred);
if (error != 0) {
printf("coda_readdir: vfs_object_create() returns %d\n", error);
vput(vp);
OpenPOWER on IntegriCloud