sched_ule: Fix a typo in a comment

PR:		226107
MFC after:	1 week
This commit is contained in:
Mark Johnston 2022-07-11 15:33:20 -04:00
parent ef80894c9d
commit ba71333f60

View File

@ -483,7 +483,7 @@ tdq_runq_add(struct tdq *tdq, struct thread *td, int flags)
("Invalid priority %d on timeshare runq", pri));
/*
* This queue contains only priorities between MIN and MAX
* realtime. Use the whole queue to represent these values.
* batch. Use the whole queue to represent these values.
*/
if ((flags & (SRQ_BORROWING|SRQ_PREEMPTED)) == 0) {
pri = RQ_NQS * (pri - PRI_MIN_BATCH) / PRI_BATCH_RANGE;