Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 165634
b: refs/heads/master
c: 55b8cab
h: refs/heads/master
v: v3
  • Loading branch information
Rusty Russell committed Sep 24, 2009
1 parent 584eb02 commit e633d7b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 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: 7ce1df49e1b1b004ff15fb0af9a02c6b1ff71f70
refs/heads/master: 55b8cab49dd43d227f0dd49e3524406fdc46d37b
10 changes: 5 additions & 5 deletions trunk/arch/mips/include/asm/mmu_context.h
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,8 @@ static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next,
* Mark current->active_mm as not "active" anymore.
* We don't want to mislead possible IPI tlb flush routines.
*/
cpu_clear(cpu, prev->cpu_vm_mask);
cpu_set(cpu, next->cpu_vm_mask);
cpumask_clear_cpu(cpu, mm_cpumask(prev));
cpumask_set_cpu(cpu, mm_cpumask(next));

local_irq_restore(flags);
}
Expand Down Expand Up @@ -235,8 +235,8 @@ activate_mm(struct mm_struct *prev, struct mm_struct *next)
TLBMISS_HANDLER_SETUP_PGD(next->pgd);

/* mark mmu ownership change */
cpu_clear(cpu, prev->cpu_vm_mask);
cpu_set(cpu, next->cpu_vm_mask);
cpumask_clear_cpu(cpu, mm_cpumask(prev));
cpumask_set_cpu(cpu, mm_cpumask(next));

local_irq_restore(flags);
}
Expand All @@ -258,7 +258,7 @@ drop_mmu_context(struct mm_struct *mm, unsigned cpu)

local_irq_save(flags);

if (cpu_isset(cpu, mm->cpu_vm_mask)) {
if (cpumask_test_cpu(cpu, mm_cpumask(mm))) {
get_new_mmu_context(mm, cpu);
#ifdef CONFIG_MIPS_MT_SMTC
/* See comments for similar code above */
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/mips/mm/c-octeon.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ static void octeon_flush_icache_all_cores(struct vm_area_struct *vma)
* cores it has been used on
*/
if (vma)
mask = vma->vm_mm->cpu_vm_mask;
mask = *mm_cpumask(vma->vm_mm);
else
mask = cpu_online_map;
cpu_clear(cpu, mask);
Expand Down

0 comments on commit e633d7b

Please sign in to comment.