Searched refs:sx_delay (Results 1 – 1 of 1) sorted by relevance
| /freebsd-10-stable/sys/kern/ |
| D | kern_sx.c | 153 static struct lock_delay_config sx_delay = { variable 160 SYSCTL_INT(_debug_sx, OID_AUTO, delay_initial, CTLFLAG_RW, &sx_delay.initial, 162 SYSCTL_INT(_debug_sx, OID_AUTO, delay_step, CTLFLAG_RW, &sx_delay.step, 164 SYSCTL_INT(_debug_sx, OID_AUTO, delay_min, CTLFLAG_RW, &sx_delay.min, 166 SYSCTL_INT(_debug_sx, OID_AUTO, delay_max, CTLFLAG_RW, &sx_delay.max, 173 sx_delay.initial = mp_ncpus * 25; in sx_delay_sysinit() 174 sx_delay.step = (mp_ncpus * 25) / 2; in sx_delay_sysinit() 175 sx_delay.min = mp_ncpus * 5; in sx_delay_sysinit() 176 sx_delay.max = mp_ncpus * 25 * 10; in sx_delay_sysinit() 564 lock_delay_arg_init(&lda, &sx_delay); in _sx_xlock_hard() [all …]
|