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

x86: fix broken flush_tlb_others_ipi(), fix

Impact: cleanup

Use the proper type.

Signed-off-by: Ingo Molnar <mingo@elte.hu>

+2 -1
+2 -1
arch/x86/kernel/tlb_64.c
··· 188 188 * We have to send the IPI only to 189 189 * CPUs affected. 190 190 */ 191 - send_IPI_mask(f->flush_cpumask, INVALIDATE_TLB_VECTOR_START + sender); 191 + send_IPI_mask(to_cpumask(f->flush_cpumask), 192 + INVALIDATE_TLB_VECTOR_START + sender); 192 193 193 194 while (!cpumask_empty(to_cpumask(f->flush_cpumask))) 194 195 cpu_relax();