Home
last modified time | relevance | path

Searched refs:v_state (Results 1 – 3 of 3) sorted by relevance

/dragonfly/sys/kern/
HDvfs_lock.c189 switch(vp->v_state) { in _vactivate()
204 vp->v_state = VS_ACTIVE; in _vactivate()
231 switch(vp->v_state) { in _vinactive()
256 vp->v_state = VS_INACTIVE; in _vinactive()
269 KASSERT((VREFCNT(vp) > 0 && vp->v_state != VS_INACTIVE), in vref()
270 ("vref: bad refcnt %08x %d", vp->v_refcnt, vp->v_state)); in vref()
355 KKASSERT(vp->v_state == VS_ACTIVE || in vrele()
356 vp->v_state == VS_INACTIVE); in vrele()
503 KKASSERT(vp->v_state == VS_ACTIVE); in vnode_terminate()
606 } else if (vp->v_state == VS_ACTIVE) { in vget()
[all …]
/dragonfly/test/debug/
HDvnodeinfo.c264 vp, vn.v_state, vn.v_refcnt, vn.v_auxrefs, vtype(vn.v_type), vn.v_flag); in dumpvp()
/dragonfly/sys/sys/
HDvnode.h169 int16_t v_state; /* active/free/cached */ member