From: Rusty Russell Date: Thu, 24 Sep 2009 15:34:39 +0000 (-0600) Subject: ia64: convert last user of smp_call_function_mask X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=da83a84b53296a2ea498be8a497c86fb4a1fd2d6;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git 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: Rusty Russell --- diff --git a/arch/ia64/kernel/smp.c b/arch/ia64/kernel/smp.c index 93ebfea43c6c..dabeefe21134 100644 --- a/arch/ia64/kernel/smp.c +++ b/arch/ia64/kernel/smp.c @@ -302,7 +302,7 @@ smp_flush_tlb_mm (struct mm_struct *mm) 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); local_irq_disable(); local_finish_flush_tlb_mm(mm);