This commit is contained in:
hannken 2020-05-18 08:30:06 +00:00
parent 0476c79b09
commit e8c811e929
1 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: vnode_if.c,v 1.111 2020/05/16 18:31:50 christos Exp $ */
/* $NetBSD: vnode_if.c,v 1.112 2020/05/18 08:30:06 hannken Exp $ */
/*
* Warning: DO NOT EDIT! This file is automatically generated!
@ -40,7 +40,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: vnode_if.c,v 1.111 2020/05/16 18:31:50 christos Exp $");
__KERNEL_RCSID(0, "$NetBSD: vnode_if.c,v 1.112 2020/05/18 08:30:06 hannken Exp $");
#include <sys/param.h>
#include <sys/mount.h>
@ -1414,11 +1414,11 @@ VOP_STRATEGY(struct vnode *vp,
a.a_desc = VDESC(vop_strategy);
a.a_vp = vp;
a.a_bp = bp;
error = vop_pre(vp, &mp, &mpsafe, FST_LAZY);
error = vop_pre(vp, &mp, &mpsafe, FST_NO);
if (error)
return error;
error = (VCALL(vp, VOFFSET(vop_strategy), &a));
vop_post(vp, mp, mpsafe, FST_LAZY);
vop_post(vp, mp, mpsafe, FST_NO);
return error;
}