vfs: switch vop_stdunlock to call lockmgr_unlock

Since the flags argument is now alawys 0 the new call provides the same
behavior.
This commit is contained in:
Mateusz Guzik 2020-01-19 21:41:34 +00:00
parent 44c78346f6
commit a9099e5b10
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=356898

View File

@ -526,7 +526,7 @@ vop_stdunlock(ap)
{
struct vnode *vp = ap->a_vp;
return (lockmgr_unlock_fast_path(vp->v_vnlock, 0, NULL));
return (lockmgr_unlock(vp->v_vnlock));
}
/* See above. */