- Add ke_runq == NULL to the conditions which will cause us to abort

adjusting timeshare loads in sched_class().  This is only important if
   the thread has never run, otherwise the state checks should work as
   expected.
This commit is contained in:
jeff 2005-02-04 17:22:46 +00:00
parent 43632a424a
commit ef8ea3a09d

View File

@ -1534,8 +1534,8 @@ sched_class(struct ksegrp *kg, int class)
oclass = PRI_BASE(kg->kg_pri_class);
FOREACH_THREAD_IN_GROUP(kg, td) {
ke = td->td_kse;
if (ke->ke_state != KES_ONRUNQ &&
ke->ke_state != KES_THREAD)
if ((ke->ke_state != KES_ONRUNQ &&
ke->ke_state != KES_THREAD) || ke->ke_runq == NULL)
continue;
kseq = KSEQ_CPU(ke->ke_cpu);