diff options
author | Ingo Molnar <mingo@kernel.org> | 2018-12-03 10:05:56 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2018-12-03 11:55:42 +0100 |
commit | dfcb245e28481256a10a9133441baf2a93d26642 (patch) | |
tree | bd966a5edf3daa2fba961d3125f80818debca132 /kernel/sched/cputime.c | |
parent | 5f675231e456cb599b283f8361f01cf34b0617df (diff) | |
download | linux-dfcb245e28481256a10a9133441baf2a93d26642.tar.gz linux-dfcb245e28481256a10a9133441baf2a93d26642.tar.bz2 linux-dfcb245e28481256a10a9133441baf2a93d26642.zip |
sched: Fix various typos in comments
Go over the scheduler source code and fix common typos
in comments - and a typo in an actual variable name.
No change in functionality intended.
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'kernel/sched/cputime.c')
-rw-r--r-- | kernel/sched/cputime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/sched/cputime.c b/kernel/sched/cputime.c index 0796f938c4f0..ba4a143bdcf3 100644 --- a/kernel/sched/cputime.c +++ b/kernel/sched/cputime.c @@ -525,7 +525,7 @@ void account_idle_ticks(unsigned long ticks) /* * Perform (stime * rtime) / total, but avoid multiplication overflow by - * loosing precision when the numbers are big. + * losing precision when the numbers are big. */ static u64 scale_stime(u64 stime, u64 rtime, u64 total) { |