[<prev] [next>] [day] [month] [year] [list]
Message-Id: <200812072137.18631.rusty@rustcorp.com.au>
Date: Sun, 7 Dec 2008 21:37:18 +1030
From: Rusty Russell <rusty@...tcorp.com.au>
To: "David S. Miller" <davem@...emloft.net>
Cc: Mike Travis <travis@....com>
Subject: [PATCH 1/2] cpumask: Use smp_call_function_many(): sparc64
Change smp_call_function_mask() callers to smp_call_function_many().
Signed-off-by: Rusty Russell <rusty@...tcorp.com.au>
Signed-off-by: Mike Travis <travis@....com>
---
arch/sparc64/kernel/smp.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- linux-2.6.orig/arch/sparc64/kernel/smp.c
+++ linux-2.6/arch/sparc64/kernel/smp.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;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists