Home
last modified time | relevance | path

Searched refs:VL_SUSPENDED (Results 1 – 2 of 2) sorted by relevance

/xnu-12377.41.6/bsd/sys/ !
H A Dvnode_internal.h261 #define VL_SUSPENDED 0x0001 /* vnode is suspended */ macro
/xnu-12377.41.6/bsd/vfs/ !
H A Dvfs_subr.c6578 if ((vp->v_lflag & VL_SUSPENDED) && vp->v_owner == current_thread()) { in vnode_resume()
6580 vp->v_lflag &= ~VL_SUSPENDED; in vnode_resume()
6598 if (vp->v_lflag & VL_SUSPENDED) { in vnode_suspend()
6610 vp->v_lflag |= VL_SUSPENDED; in vnode_suspend()
6707 if ((vp->v_lflag & (VL_SUSPENDED | VL_DRAIN | VL_TERMINATE)) == 0) { in vnode_getiocount()
6713 if (nosusp && (vp->v_lflag & VL_SUSPENDED)) { in vnode_getiocount()
6720 if ((vp->v_lflag & (VL_DRAIN | VL_SUSPENDED | VL_TERMINATE)) && in vnode_getiocount()
6729 if (noblock && (vp->v_lflag & (VL_DRAIN | VL_SUSPENDED | VL_TERMINATE))) { in vnode_getiocount()
6809 if ((vp->v_lflag & (VL_DRAIN | VL_SUSPENDED)) && (vp->v_iocount <= 1)) { in vnode_dropiocount()