Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 68576
b: refs/heads/master
c: ece8a9e
h: refs/heads/master
v: v3
  • Loading branch information
Ralf Baechle committed Oct 12, 2007
1 parent d22824c commit 6504a58
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 6f1ca1d2869814711bcf983cfc0803cfd0b29f27
refs/heads/master: ece8a9e4f011b038396c7649a8407ca9171be4a9
6 changes: 3 additions & 3 deletions trunk/arch/mips/kernel/smp.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down Expand Up @@ -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;
}
Expand Down Expand Up @@ -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;
}
Expand Down

0 comments on commit 6504a58

Please sign in to comment.