Home
last modified time | relevance | path

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

/freebsd-11-stable/sys/vm/
HDvm_glue.c296 struct kstack_cache_entry *kstack_cache; variable
300 MTX_SYSINIT(kstack_cache, &kstack_cache_mtx, "kstkch", MTX_DEF);
329 if (kstack_cache != NULL) { in vm_thread_new()
330 ks_ce = kstack_cache; in vm_thread_new()
331 kstack_cache = ks_ce->next_ks_entry; in vm_thread_new()
439 ks_ce->next_ks_entry = kstack_cache; in vm_thread_dispose()
440 kstack_cache = ks_ce; in vm_thread_dispose()
453 ks_ce = kstack_cache; in vm_thread_stack_lowmem()
454 kstack_cache = NULL; in vm_thread_stack_lowmem()
/freebsd-11-stable/sys/sys/
HD_kstack_cache.h39 extern struct kstack_cache_entry *kstack_cache;
/freebsd-11-stable/sys/ddb/
HDdb_ps.c514 for (ks_ce = kstack_cache; ks_ce != NULL; in db_findstack_cmd()