Home
last modified time | relevance | path

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

/openbsd/sys/kern/
H A Dsubr_pool.c1732 TAILQ_INIT(&pp->pr_cache_lists); in pool_cache_init()
1812 pl = TAILQ_FIRST(&pp->pr_cache_lists); in pool_cache_list_alloc()
1814 TAILQ_REMOVE(&pp->pr_cache_lists, pl, ci_nextl); in pool_cache_list_alloc()
1836 if (TAILQ_EMPTY(&pp->pr_cache_lists)) in pool_cache_list_free()
1840 TAILQ_INSERT_TAIL(&pp->pr_cache_lists, ci, ci_nextl); in pool_cache_list_free()
2004 pl = TAILQ_FIRST(&pp->pr_cache_lists); in pool_cache_destroy()
2015 !TAILQ_EMPTY(&pp->pr_cache_lists) && in pool_cache_gc()
2019 pl = TAILQ_FIRST(&pp->pr_cache_lists); in pool_cache_gc()
2021 TAILQ_REMOVE(&pp->pr_cache_lists, pl, ci_nextl); in pool_cache_gc()
/openbsd/sys/sys/
H A Dpool.h199 pr_cache_lists; /* list of idle item lists */ member