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/fs/cd9660/cd9660_vfsops.c,v rcsdiff: /ftp/cvs/cvsroot/src/sys/fs/cd9660/cd9660_vfsops.c,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.57.4.4 retrieving revision 1.57.4.5 diff -u -p -r1.57.4.4 -r1.57.4.5 --- src/sys/fs/cd9660/cd9660_vfsops.c 2010/03/11 15:04:13 1.57.4.4 +++ src/sys/fs/cd9660/cd9660_vfsops.c 2010/08/11 22:54:32 1.57.4.5 @@ -1,4 +1,4 @@ -/* $NetBSD: cd9660_vfsops.c,v 1.57.4.4 2010/03/11 15:04:13 yamt Exp $ */ +/* $NetBSD: cd9660_vfsops.c,v 1.57.4.5 2010/08/11 22:54:32 yamt Exp $ */ /*- * Copyright (c) 1994 @@ -37,7 +37,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: cd9660_vfsops.c,v 1.57.4.4 2010/03/11 15:04:13 yamt Exp $"); +__KERNEL_RCSID(0, "$NetBSD: cd9660_vfsops.c,v 1.57.4.5 2010/08/11 22:54:32 yamt Exp $"); #if defined(_KERNEL_OPT) #include "opt_compat_netbsd.h" @@ -265,7 +265,7 @@ cd9660_mount(struct mount *mp, const cha */ vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY); error = genfs_can_mount(devvp, VREAD, l->l_cred); - VOP_UNLOCK(devvp, 0); + VOP_UNLOCK(devvp); if (error) { vrele(devvp); return (error); @@ -278,7 +278,7 @@ cd9660_mount(struct mount *mp, const cha if (error) { vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY); (void)VOP_CLOSE(devvp, FREAD, NOCRED); - VOP_UNLOCK(devvp, 0); + VOP_UNLOCK(devvp); goto fail; } } else {