Commit da83a84b authored by Rusty Russell's avatar Rusty Russell

ia64: convert last user of smp_call_function_mask

smp_call_function_many is the new version: it takes a pointer.  Also,
use mm accessor macro while we're changing this.
Signed-off-by: default avatarRusty Russell <rusty@rustcorp.com.au>
parent e0ad9556
...@@ -302,7 +302,7 @@ smp_flush_tlb_mm (struct mm_struct *mm) ...@@ -302,7 +302,7 @@ smp_flush_tlb_mm (struct mm_struct *mm)
return; return;
} }
smp_call_function_mask(mm->cpu_vm_mask, smp_call_function_many(mm_cpumask(mm),
(void (*)(void *))local_finish_flush_tlb_mm, mm, 1); (void (*)(void *))local_finish_flush_tlb_mm, mm, 1);
local_irq_disable(); local_irq_disable();
local_finish_flush_tlb_mm(mm); local_finish_flush_tlb_mm(mm);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment