Home
last modified time | relevance | path

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

/freebsd/sys/kern/
H A Dvfs_subr.c3421 if ((vp->v_mflag & VMP_LAZYLIST) != 0) in vlazy()
3430 if ((vp->v_mflag & VMP_LAZYLIST) == 0) { in vlazy()
3431 vp->v_mflag |= VMP_LAZYLIST; in vlazy()
3448 VNPASS(vp->v_mflag & VMP_LAZYLIST, vp); in vunlazy()
3456 vp->v_mflag &= ~VMP_LAZYLIST; in vunlazy()
3476 if (vp->v_mflag & VMP_LAZYLIST) { in vunlazy_gone()
3480 vp->v_mflag &= ~VMP_LAZYLIST; in vunlazy_gone()
3991 if (vp->v_mflag & VMP_LAZYLIST) { in vdropl_impl()
4611 if (vp->v_mflag & VMP_LAZYLIST) in vn_printf()
4613 flags = vp->v_mflag & ~(VMP_LAZYLIST); in vn_printf()
[all …]
/freebsd/sys/ufs/ffs/
H A Dffs_vnops.c597 if ((vp->v_mflag & VMP_LAZYLIST) == 0) { in ffs_unlock_debug()
599 VNASSERT((vp->v_mflag & VMP_LAZYLIST), vp, in ffs_unlock_debug()
/freebsd/sys/sys/
H A Dvnode.h274 #define VMP_LAZYLIST 0x0001 /* Vnode is on mnt's lazy list */ macro