Home
last modified time | relevance | path

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

/freebsd-12.1/sys/vm/
H A Dvm_glue.c300 struct kstack_cache_entry *kstack_cache; variable
304 MTX_SYSINIT(kstack_cache, &kstack_cache_mtx, "kstkch", MTX_DEF);
331 if (pages == kstack_pages && kstack_cache != NULL) { in vm_thread_new()
333 if (kstack_cache != NULL) { in vm_thread_new()
334 ks_ce = kstack_cache; in vm_thread_new()
335 kstack_cache = ks_ce->next_ks_entry; in vm_thread_new()
454 ks_ce->next_ks_entry = kstack_cache; in vm_thread_dispose()
455 kstack_cache = ks_ce; in vm_thread_dispose()
468 ks_ce = kstack_cache; in vm_thread_stack_lowmem()
469 kstack_cache = NULL; in vm_thread_stack_lowmem()
/freebsd-12.1/sys/sys/
H A D_kstack_cache.h41 extern struct kstack_cache_entry *kstack_cache;
/freebsd-12.1/sys/ddb/
H A Ddb_ps.c527 for (ks_ce = kstack_cache; ks_ce != NULL; in db_findstack_cmd()