diff options
author | Mateusz Guzik <mjg@FreeBSD.org> | 2020-08-16 17:18:54 +0000 |
---|---|---|
committer | Mateusz Guzik <mjg@FreeBSD.org> | 2020-08-16 17:18:54 +0000 |
commit | a92a971bbb94ad5b44e2a5bbdc669ad3ae762c8d (patch) | |
tree | 2b25fe1e41aaf0791b26dd5a4b8ad0cad897fe6e /sys/kern/uipc_mqueue.c | |
parent | d59f3890c36601f4f62bb4a0b7db977e42339588 (diff) |
Notes
Diffstat (limited to 'sys/kern/uipc_mqueue.c')
-rw-r--r-- | sys/kern/uipc_mqueue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/uipc_mqueue.c b/sys/kern/uipc_mqueue.c index 018630ca7dad3..28fc1d84329b9 100644 --- a/sys/kern/uipc_mqueue.c +++ b/sys/kern/uipc_mqueue.c @@ -754,7 +754,7 @@ mqfs_allocv(struct mount *mp, struct vnode **vpp, struct mqfs_node *pn) found: *vpp = vd->mv_vnode; sx_xunlock(&mqfs->mi_lock); - error = vget(*vpp, LK_RETRY | LK_EXCLUSIVE, curthread); + error = vget(*vpp, LK_RETRY | LK_EXCLUSIVE); vdrop(*vpp); return (error); } |