diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-01-15 15:04:58 +0300 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-01-15 15:04:58 +0300 |
commit | 54da5b3d44238eeb7417bacf792fb416d473bf4d (patch) | |
tree | c7f80acef545271f088a25b1f9ca7da47ea53c22 /arch/x86/kernel/tlb_64.c | |
parent | d2287f5ebea9ff2487d614719775f0b03fce15f6 (diff) | |
download | linux-54da5b3d44238eeb7417bacf792fb416d473bf4d.tar.xz |
x86: fix broken flush_tlb_others_ipi(), fix
Impact: cleanup
Use the proper type.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/tlb_64.c')
-rw-r--r-- | arch/x86/kernel/tlb_64.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/x86/kernel/tlb_64.c b/arch/x86/kernel/tlb_64.c index 54ee2ecb5e26..7f4141d3b661 100644 --- a/arch/x86/kernel/tlb_64.c +++ b/arch/x86/kernel/tlb_64.c @@ -188,7 +188,8 @@ static void flush_tlb_others_ipi(const struct cpumask *cpumask, * We have to send the IPI only to * CPUs affected. */ - send_IPI_mask(f->flush_cpumask, INVALIDATE_TLB_VECTOR_START + sender); + send_IPI_mask(to_cpumask(f->flush_cpumask), + INVALIDATE_TLB_VECTOR_START + sender); while (!cpumask_empty(to_cpumask(f->flush_cpumask))) cpu_relax(); |