Home
last modified time | relevance | path

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

/f-stack/freebsd/vm/
H A Dvm_glue.c270 static int kstack_cache_size; variable
277 oldsize = kstack_cache_size; in sysctl_kstack_cache_size()
279 if (error == 0 && req->newptr && oldsize != kstack_cache_size) in sysctl_kstack_cache_size()
280 uma_zone_set_maxcache(kstack_cache, kstack_cache_size); in sysctl_kstack_cache_size()
283 SYSCTL_PROC(_vm, OID_AUTO, kstack_cache_size,
284 CTLTYPE_INT|CTLFLAG_MPSAFE|CTLFLAG_RW, &kstack_cache_size, 0,
479 kstack_cache_size = imax(128, mp_ncpus * 4); in kstack_cache_init()
480 uma_zone_set_maxcache(kstack_cache, kstack_cache_size); in kstack_cache_init()