Make kern.sched.idlespinthresh default value adaptive depending of HZ.

Otherwise with HZ above 8000 CPU may never skip timer ticks on idle.
This commit is contained in:
Alexander Motin 2012-03-09 19:09:08 +00:00
parent 6b381ff332
commit b3f40a4107
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=232740

View file

@ -212,7 +212,7 @@ static int preempt_thresh = 0;
#endif
static int static_boost = PRI_MIN_BATCH;
static int sched_idlespins = 10000;
static int sched_idlespinthresh = 16;
static int sched_idlespinthresh = -1;
/*
* tdq - per processor runqs and statistics. All fields are protected by the
@ -1390,6 +1390,8 @@ sched_initticks(void *dummy)
steal_thresh = min(fls(mp_ncpus) - 1, 3);
affinity = SCHED_AFFINITY_DEFAULT;
#endif
if (sched_idlespinthresh < 0)
sched_idlespinthresh = max(16, 2 * hz / realstathz);
}