Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 11 Jul 2022 19:59:01 GMT
From:      Mark Johnston <markj@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: ba71333f6049 - main - sched_ule: Fix a typo in a comment
Message-ID:  <202207111959.26BJx1f0003238@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202207111959.26BJx1f0003238>