diff options
author | Ingo Molnar <mingo@kernel.org> | 2024-05-27 16:54:52 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2024-05-27 17:00:21 +0200 |
commit | 402de7fc880fef055bc984957454b532987e9ad0 (patch) | |
tree | 4a4d4b281f1fab1f7e1ad8c06f038b9e8d8f83ca /kernel/sched/loadavg.c | |
parent | sched/syscalls: Split out kernel/sched/syscalls.c from kernel/sched/core.c (diff) | |
download | linux-402de7fc880fef055bc984957454b532987e9ad0.tar.xz linux-402de7fc880fef055bc984957454b532987e9ad0.zip |
sched: Fix spelling in comments
Do a spell-checking pass.
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'kernel/sched/loadavg.c')
-rw-r--r-- | kernel/sched/loadavg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/sched/loadavg.c b/kernel/sched/loadavg.c index ca9da66cc894..c48900b856a2 100644 --- a/kernel/sched/loadavg.c +++ b/kernel/sched/loadavg.c @@ -45,7 +45,7 @@ * again, being late doesn't loose the delta, just wrecks the sample. * * - cpu_rq()->nr_uninterruptible isn't accurately tracked per-CPU because - * this would add another cross-CPU cacheline miss and atomic operation + * this would add another cross-CPU cache-line miss and atomic operation * to the wakeup path. Instead we increment on whatever CPU the task ran * when it went into uninterruptible state and decrement on whatever CPU * did the wakeup. This means that only the sum of nr_uninterruptible over @@ -62,7 +62,7 @@ EXPORT_SYMBOL(avenrun); /* should be removed */ /** * get_avenrun - get the load average array - * @loads: pointer to dest load array + * @loads: pointer to destination load array * @offset: offset to add * @shift: shift count to shift the result left * |