mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Document that null_nodeget() cannot take shared-locked lowervp due to
insmntque() requirements. Tested by: pho MFC after: 1 week
This commit is contained in:
parent
409b12c08a
commit
cec1d07726
1 changed files with 5 additions and 1 deletions
|
|
@ -209,7 +209,11 @@ null_nodeget(mp, lowervp, vpp)
|
|||
struct vnode *vp;
|
||||
int error;
|
||||
|
||||
ASSERT_VOP_LOCKED(lowervp, "lowervp");
|
||||
/*
|
||||
* The insmntque1() call below requires the exclusive lock on
|
||||
* the nullfs vnode.
|
||||
*/
|
||||
ASSERT_VOP_ELOCKED(lowervp, "lowervp");
|
||||
KASSERT(lowervp->v_usecount >= 1, ("Unreferenced vnode %p\n", lowervp));
|
||||
|
||||
/* Lookup the hash firstly */
|
||||
|
|
|
|||
Loading…
Reference in a new issue