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.c1737 TAILQ_INIT(&pp->pr_cache_lists); in pool_cache_init()
1817 pl = TAILQ_FIRST(&pp->pr_cache_lists); in pool_cache_list_alloc()
1819 TAILQ_REMOVE(&pp->pr_cache_lists, pl, ci_nextl); in pool_cache_list_alloc()
1841 if (TAILQ_EMPTY(&pp->pr_cache_lists)) in pool_cache_list_free()
1845 TAILQ_INSERT_TAIL(&pp->pr_cache_lists, ci, ci_nextl); in pool_cache_list_free()
2009 pl = TAILQ_FIRST(&pp->pr_cache_lists); in pool_cache_destroy()
2020 !TAILQ_EMPTY(&pp->pr_cache_lists) && in pool_cache_gc()
2024 pl = TAILQ_FIRST(&pp->pr_cache_lists); in pool_cache_gc()
2026 TAILQ_REMOVE(&pp->pr_cache_lists, pl, ci_nextl); in pool_cache_gc()
/openbsd/sys/sys/
H A Dpool.h200 pr_cache_lists; /* list of idle item lists */ member