HomeSort by: relevance | last modified time | path
    Searched refs:v_usecount (Results 1 - 9 of 9) sorted by relevancy

  /src/sbin/fsck_lfs/
vnode.h 48 #undef v_usecount
49 int v_usecount; member in struct:uvnode
vnode.c 177 vp->v_usecount == 0 &&
bufcache.c 188 ++bp->b_vp->v_usecount;
327 --bp->b_vp->v_usecount;
lfs.c 343 vp->v_usecount = 0;
  /src/sys/kern/
vfs_vnode.c 141 * Vnode is considered active, if reference count (vnode_t::v_usecount)
146 * v_usecount is adjusted with atomic operations, however to change
243 * The high bit of v_usecount is a gate for vcache_tryvget(). It's set
245 * The next bit of v_usecount is a flag for vrelel(). It's set
259 return atomic_load_relaxed(&vp->v_usecount) & VUSECOUNT_MASK;
342 bool gated = (atomic_load_relaxed(&vp->v_usecount) & VUSECOUNT_GATE);
365 atomic_or_uint(&vp->v_usecount, VUSECOUNT_GATE);
367 atomic_and_uint(&vp->v_usecount, ~VUSECOUNT_GATE);
409 atomic_or_uint(&vp->v_usecount, VUSECOUNT_GATE);
411 atomic_and_uint(&vp->v_usecount, ~VUSECOUNT_GATE)
    [all...]
vfs_mount.c 457 vp->v_usecount = 1;
475 mvp->v_usecount = 0;
499 VIMPL_TO_VNODE(mvip)->v_usecount = 0;
518 VIMPL_TO_VNODE(mvip)->v_usecount = 1;
  /src/libexec/lfs_cleanerd/
fdfs.c 110 vp->v_usecount = 0;
  /src/sys/sys/
vnode.h 157 int v_usecount; /* i reference count */ member in struct:vnode
  /src/usr.sbin/pstat/
pstat.c 448 PRWORD(ovflw, " %*d", 5, 1, vp->v_usecount & VUSECOUNT_MASK);

Completed in 20 milliseconds