Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

arch: mips: kernel: Fix two spelling in smp.c

s/logcal/logical/
s/intercpu/inter-CPU/

Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>

authored by

Bhaskar Chowdhury and committed by
Thomas Bogendoerfer
a056aacd 3235c5f0

+3 -3
+3 -3
arch/mips/kernel/smp.c
··· 59 59 static DECLARE_COMPLETION(cpu_running); 60 60 61 61 /* 62 - * A logcal cpu mask containing only one VPE per core to 62 + * A logical cpu mask containing only one VPE per core to 63 63 * reduce the number of IPIs on large MT systems. 64 64 */ 65 65 cpumask_t cpu_foreign_map[NR_CPUS] __read_mostly; ··· 510 510 * address spaces, a new context is obtained on the current cpu, and tlb 511 511 * context on other cpus are invalidated to force a new context allocation 512 512 * at switch_mm time, should the mm ever be used on other cpus. For 513 - * multithreaded address spaces, intercpu interrupts have to be sent. 514 - * Another case where intercpu interrupts are required is when the target 513 + * multithreaded address spaces, inter-CPU interrupts have to be sent. 514 + * Another case where inter-CPU interrupts are required is when the target 515 515 * mm might be active on another cpu (eg debuggers doing the flushes on 516 516 * behalf of debugees, kswapd stealing pages from another process etc). 517 517 * Kanoj 07/00.