aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2009-01-15 13:04:58 +0100
committerIngo Molnar <mingo@elte.hu>2009-01-15 13:04:58 +0100
commit54da5b3d44238eeb7417bacf792fb416d473bf4d (patch)
treec7f80acef545271f088a25b1f9ca7da47ea53c22
parentd2287f5ebea9ff2487d614719775f0b03fce15f6 (diff)
x86: fix broken flush_tlb_others_ipi(), fix
Impact: cleanup Use the proper type. Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r--arch/x86/kernel/tlb_64.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/x86/kernel/tlb_64.c b/arch/x86/kernel/tlb_64.c
index 54ee2ecb5e2..7f4141d3b66 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();