git: 905b6396644d - stable/14 - sched_ule: sched_clock(): Remove a superfluous space
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 23 Jul 2026 10:01:01 UTC
The branch stable/14 has been updated by olce:
URL: https://cgit.FreeBSD.org/src/commit/?id=905b6396644d7a7fa6ce475cec6475ece26fd486
commit 905b6396644d7a7fa6ce475cec6475ece26fd486
Author: Olivier Certner <olce@FreeBSD.org>
AuthorDate: 2026-06-16 16:11:58 +0000
Commit: Olivier Certner <olce@FreeBSD.org>
CommitDate: 2026-07-23 09:59:11 +0000
sched_ule: sched_clock(): Remove a superfluous space
MFC after: 1 week
Event: Halifax Hackathon 202606
Sponsored by: The FreeBSD Foundation
(cherry picked from commit 5f376d52f2c86fd19e3f774a02c4b0debeb3f2cf)
---
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 a9f0014269cf..aa5104e58d93 100644
--- a/sys/kern/sched_ule.c
+++ b/sys/kern/sched_ule.c
@@ -2755,7 +2755,7 @@ sched_clock(struct thread *td, int cnt)
if (tdq->tdq_ts_off == tdq->tdq_ts_deq_off) {
tdq->tdq_ts_ticks += cnt;
tdq->tdq_ts_off = (tdq->tdq_ts_off + 2 * cnt -
- tdq-> tdq_ts_ticks / 4) % RQ_TS_POL_MODULO;
+ tdq->tdq_ts_ticks / 4) % RQ_TS_POL_MODULO;
tdq->tdq_ts_ticks %= 4;
tdq_advance_ts_deq_off(tdq, false);
}