From ffaaca5874a2e0b773197f6c600449c2e383d5d8 Mon Sep 17 00:00:00 2001 From: eivind Date: Tue, 5 Jan 1999 18:50:03 +0000 Subject: Remove the 'waslocked' parameter to vfs_object_create(). --- sys/kern/vfs_vnops.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/kern/vfs_vnops.c') diff --git a/sys/kern/vfs_vnops.c b/sys/kern/vfs_vnops.c index 2b73bcc..756c945 100644 --- a/sys/kern/vfs_vnops.c +++ b/sys/kern/vfs_vnops.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)vfs_vnops.c 8.2 (Berkeley) 1/21/94 - * $Id: vfs_vnops.c,v 1.59 1998/06/27 06:43:09 phk Exp $ + * $Id: vfs_vnops.c,v 1.60 1998/11/02 02:36:16 peter Exp $ */ #include @@ -172,7 +172,7 @@ vn_open(ndp, fmode, cmode) * Make sure that a VM object is created for VMIO support. */ if (vp->v_type == VREG) { - if ((error = vfs_object_create(vp, p, cred, 1)) != 0) + if ((error = vfs_object_create(vp, p, cred)) != 0) goto bad; } -- cgit v1.1