diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2009-03-16 05:10:22 +0100 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2009-03-16 05:10:22 +0100 |
commit | fd8e18e9f486bcbdd8e0d817e6aa8622a5034540 (patch) | |
tree | 1ef0357f3a6fd91df104814323a106d6ebf10923 /arch/sparc | |
parent | parisc: sba_iommu: fix build bug when CONFIG_PARISC_AGP=y (diff) | |
download | linux-fd8e18e9f486bcbdd8e0d817e6aa8622a5034540.tar.xz linux-fd8e18e9f486bcbdd8e0d817e6aa8622a5034540.zip |
cpumask: Use smp_call_function_many(): sparc64
Impact: Use new API
Change smp_call_function_mask() callers to smp_call_function_many().
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Mike Travis <travis@sgi.com>
Diffstat (limited to 'arch/sparc')
-rw-r--r-- | arch/sparc/kernel/smp_64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sparc/kernel/smp_64.c b/arch/sparc/kernel/smp_64.c index 6cd1a5b65067..a4713e77ce45 100644 --- a/arch/sparc/kernel/smp_64.c +++ b/arch/sparc/kernel/smp_64.c @@ -850,7 +850,7 @@ static void tsb_sync(void *info) void smp_tsb_sync(struct mm_struct *mm) { - smp_call_function_mask(mm->cpu_vm_mask, tsb_sync, mm, 1); + smp_call_function_many(&mm->cpu_vm_mask, tsb_sync, mm, 1); } extern unsigned long xcall_flush_tlb_mm; |