From: Ralf Baechle Date: Fri, 12 Oct 2007 14:03:38 +0000 (+0100) Subject: [MIPS] SMP: Fix use of cpumasks. X-Git-Tag: v2.6.24-rc1~1362^2 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=ece8a9e4f011b038396c7649a8407ca9171be4a9;p=linux-2.6-omap-h63xx.git [MIPS] SMP: Fix use of cpumasks. Noticed by Nick Piggin . Signed-off-by: Ralf Baechle --- diff --git a/arch/mips/kernel/smp.c b/arch/mips/kernel/smp.c index 432f2e376ae..63989e9df4f 100644 --- a/arch/mips/kernel/smp.c +++ b/arch/mips/kernel/smp.c @@ -379,7 +379,7 @@ void flush_tlb_mm(struct mm_struct *mm) unsigned int cpu; cpu_clear(smp_processor_id(), mask); - for_each_online_cpu(cpu) + for_each_cpu_mask(cpu, mask) if (cpu_context(cpu, mm)) cpu_context(cpu, mm) = 0; } @@ -419,7 +419,7 @@ void flush_tlb_range(struct vm_area_struct *vma, unsigned long start, unsigned l unsigned int cpu; cpu_clear(smp_processor_id(), mask); - for_each_online_cpu(cpu) + for_each_cpu_mask(cpu, mask) if (cpu_context(cpu, mm)) cpu_context(cpu, mm) = 0; } @@ -466,7 +466,7 @@ void flush_tlb_page(struct vm_area_struct *vma, unsigned long page) unsigned int cpu; cpu_clear(smp_processor_id(), mask); - for_each_online_cpu(cpu) + for_each_cpu_mask(cpu, mask) if (cpu_context(cpu, vma->vm_mm)) cpu_context(cpu, vma->vm_mm) = 0; }