/src/sys/kern/ |
vfs_vnode.c | 81 * Recycle from a free list, via getnewvnode(9) -> getcleanvnode(9) 847 bool recycle, defer, objlock_held; local in function:vrelel 1002 * deleted, then recycle the vnode. 1007 recycle = false; 1008 VOP_INACTIVE(vp, &recycle); 1009 if (!recycle) { 1020 if (recycle) { 1031 * Recycle the vnode if the file is now unused (unlinked). 1033 if (recycle) { 1177 * Recycle an unused vnode if caller holds the last reference 1868 bool recycle; local in function:vcache_reclaim 2011 bool recycle; local in function:vcache_make_anon [all...] |
kern_lwp.c | 1251 lwp_free(struct lwp *l, bool recycle, bool last) 1351 * caller wants to recycle. 1365 if (!recycle)
|
vnode_if.c | 1556 bool *recycle) 1564 a.a_recycle = recycle;
|
/src/sys/rump/librump/rumpvfs/ |
rumpvnode_if.c | 519 bool *recycle) 524 error = VOP_INACTIVE(vp, recycle);
|
/src/lib/libp2k/ |
p2k.c | 41 * put out of its misery, it will set the recycle flag. We use this 1374 bool recycle = false; local in function:p2k_node_inactive 1407 rv = RUMP_VOP_INACTIVE(vp, &recycle); 1409 if (recycle) {
|
/src/sys/external/bsd/vchiq/dist/interface/vchiq_arm/ |
vchiq_core.h | 371 REMOTE_EVENT_T recycle; member in struct:vchiq_shared_state_struct 437 /* Local implementation of the recycle remote event */
|
vchiq_core.c | 479 remote_event_poll(state, &state->local->recycle); 621 /* Called by the recycle thread. */ 1160 "%d: release_slot %d - recycle->%x", 1166 remote_event_signal(&state->remote->recycle); 2143 /* Called by the recycle thread */ 2152 remote_event_wait(state, &local->recycle); 2496 local->recycle.event = offsetof(VCHIQ_STATE_T, recycle_event); 2497 remote_event_create(state, &local->recycle); 3691 " %s: slots %d-%d tx_pos=%x recycle=%x",
|
/src/sys/fs/puffs/ |
puffs_vnops.c | 1278 bool recycle = false; local in function:puffs_vnop_inactive 1311 recycle = true; 1322 if (PUFFS_USE_FS_TTL(pmp) && !(vp->v_vflag & VV_ROOT) && !recycle) { 1329 recycle = true; 1332 if (!recycle && !reclaimqueued) { 1370 *ap->a_recycle = recycle;
|