Regen after making VOP_FCNTL take an unlocked vnode.

This commit is contained in:
perseant 2006-05-04 16:49:54 +00:00
parent 935530188d
commit 86f30eea43
2 changed files with 8 additions and 8 deletions

View File

@ -1,11 +1,11 @@
/* $NetBSD: vnode_if.c,v 1.63 2005/12/30 11:19:26 yamt Exp $ */
/* $NetBSD: vnode_if.c,v 1.64 2006/05/04 16:49:54 perseant Exp $ */
/*
* Warning: DO NOT EDIT! This file is automatically generated!
* (Modifications made here may easily be lost!)
*
* Created from the file:
* NetBSD: vnode_if.src,v 1.48 2005/12/30 11:19:09 yamt Exp
* NetBSD: vnode_if.src,v 1.49 2006/05/04 16:48:16 perseant Exp
* by the script:
* NetBSD: vnode_if.sh,v 1.41 2005/12/11 12:24:30 christos Exp
*/
@ -40,7 +40,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: vnode_if.c,v 1.63 2005/12/30 11:19:26 yamt Exp $");
__KERNEL_RCSID(0, "$NetBSD: vnode_if.c,v 1.64 2006/05/04 16:49:54 perseant Exp $");
/*
@ -534,9 +534,9 @@ VOP_FCNTL(struct vnode *vp,
a.a_desc = VDESC(vop_fcntl);
a.a_vp = vp;
#ifdef VNODE_LOCKDEBUG
islocked_vp = (vp->v_flag & VLOCKSWORK) ? (VOP_ISLOCKED(vp) == LK_EXCLUSIVE) : 1;
if (islocked_vp != 1)
panic("vop_fcntl: vp: locked %d, expected %d", islocked_vp, 1);
islocked_vp = (vp->v_flag & VLOCKSWORK) ? (VOP_ISLOCKED(vp) == LK_EXCLUSIVE) : 0;
if (islocked_vp != 0)
panic("vop_fcntl: vp: locked %d, expected %d", islocked_vp, 0);
#endif
a.a_command = command;
a.a_data = data;

View File

@ -1,11 +1,11 @@
/* $NetBSD: vnode_if.h,v 1.59 2005/12/30 11:19:26 yamt Exp $ */
/* $NetBSD: vnode_if.h,v 1.60 2006/05/04 16:49:54 perseant Exp $ */
/*
* Warning: DO NOT EDIT! This file is automatically generated!
* (Modifications made here may easily be lost!)
*
* Created from the file:
* NetBSD: vnode_if.src,v 1.48 2005/12/30 11:19:09 yamt Exp
* NetBSD: vnode_if.src,v 1.49 2006/05/04 16:48:16 perseant Exp
* by the script:
* NetBSD: vnode_if.sh,v 1.41 2005/12/11 12:24:30 christos Exp
*/