git: c8f21cc79f00 - stable/13 - sched_ule(4): Fix two typo in source code comments
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 28 Nov 2021 11:43:46 UTC
The branch stable/13 has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=c8f21cc79f001b55469b4d6577a7cd0f927fafe9 commit c8f21cc79f001b55469b4d6577a7cd0f927fafe9 Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2021-11-19 18:13:28 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2021-11-28 11:41:11 +0000 sched_ule(4): Fix two typo in source code comments - s/conditons/conditions/ - s/unconditonally/unconditionally/ (cherry picked from commit 15b5c347f1916d14e84765ae68921755ee930612) --- sys/kern/sched_ule.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/kern/sched_ule.c b/sys/kern/sched_ule.c index 708c19b27394..c9498cac7912 100644 --- a/sys/kern/sched_ule.c +++ b/sys/kern/sched_ule.c @@ -2020,7 +2020,7 @@ tdq_trysteal(struct tdq *tdq) /* * The data returned by sched_highest() is stale and * the chosen CPU no longer has an eligible thread. - * At this point unconditonally exit the loop to bound + * At this point unconditionally exit the loop to bound * the time spent in the critcal section. */ if (steal->tdq_load < steal_thresh || @@ -3033,7 +3033,7 @@ sched_fork_exit(struct thread *td) } /* - * Create on first use to catch odd startup conditons. + * Create on first use to catch odd startup conditions. */ char * sched_tdname(struct thread *td)