Home
last modified time | relevance | path

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

/freebsd/sys/vm/
H A Dvm_glue.c279 static int kstack_cache_size; variable
292 oldsize = kstack_cache_size; in sysctl_kstack_cache_size()
294 if (error == 0 && req->newptr && oldsize != kstack_cache_size) in sysctl_kstack_cache_size()
295 uma_zone_set_maxcache(kstack_cache, kstack_cache_size); in sysctl_kstack_cache_size()
298 SYSCTL_PROC(_vm, OID_AUTO, kstack_cache_size,
299 CTLTYPE_INT|CTLFLAG_MPSAFE|CTLFLAG_RW, &kstack_cache_size, 0,
694 kstack_cache_size = imax(128, mp_ncpus * 4); in kstack_cache_init()
695 uma_zone_set_maxcache(kstack_cache, kstack_cache_size); in kstack_cache_init()