diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-01-15 07:04:58 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-01-15 07:04:58 -0500 |
commit | 54da5b3d44238eeb7417bacf792fb416d473bf4d (patch) | |
tree | c7f80acef545271f088a25b1f9ca7da47ea53c22 /arch/x86/kernel/tlb_64.c | |
parent | d2287f5ebea9ff2487d614719775f0b03fce15f6 (diff) |
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, | |||
188 | * We have to send the IPI only to | 188 | * We have to send the IPI only to |
189 | * CPUs affected. | 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 | while (!cpumask_empty(to_cpumask(f->flush_cpumask))) | 194 | while (!cpumask_empty(to_cpumask(f->flush_cpumask))) |
194 | cpu_relax(); | 195 | cpu_relax(); |