git: ba71333f6049 - main - sched_ule: Fix a typo in a comment

From: Mark Johnston <markj_at_FreeBSD.org>
Date: Mon, 11 Jul 2022 19:59:01 UTC
The branch main has been updated by markj:

URL: https://cgit.FreeBSD.org/src/commit/?id=ba71333f6049ee76b0023b3b9e8444d5ccb1a7ff

commit ba71333f6049ee76b0023b3b9e8444d5ccb1a7ff
Author:     Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2022-07-11 19:33:20 +0000
Commit:     Mark Johnston <markj@FreeBSD.org>
CommitDate: 2022-07-11 19:58:43 +0000

    sched_ule: Fix a typo in a comment
    
    PR:             226107
    MFC after:      1 week
---
 sys/kern/sched_ule.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/kern/sched_ule.c b/sys/kern/sched_ule.c
index 1163005abc1a..2462e3fad572 100644
--- a/sys/kern/sched_ule.c
+++ b/sys/kern/sched_ule.c
@@ -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;