Commit 26a51b27 authored by Thiemo Seufer's avatar Thiemo Seufer Committed by Ralf Baechle

Use intermediate variable.

Signed-off-by: default avatarThiemo Seufer <ths@networkno.de>
Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 1ba582a1
...@@ -380,7 +380,7 @@ static inline void local_r4k_flush_cache_page(void *args) ...@@ -380,7 +380,7 @@ static inline void local_r4k_flush_cache_page(void *args)
* If ownes no valid ASID yet, cannot possibly have gotten * If ownes no valid ASID yet, cannot possibly have gotten
* this page into the cache. * this page into the cache.
*/ */
if (cpu_context(smp_processor_id(), vma->vm_mm) == 0) if (cpu_context(smp_processor_id(), mm) == 0)
return; return;
page &= PAGE_MASK; page &= PAGE_MASK;
...@@ -428,8 +428,8 @@ static inline void local_r4k_flush_cache_page(void *args) ...@@ -428,8 +428,8 @@ static inline void local_r4k_flush_cache_page(void *args)
if (cpu_has_vtag_icache) { if (cpu_has_vtag_icache) {
int cpu = smp_processor_id(); int cpu = smp_processor_id();
if (cpu_context(cpu, vma->vm_mm) != 0) if (cpu_context(cpu, mm) != 0)
drop_mmu_context(vma->vm_mm, cpu); drop_mmu_context(mm, cpu);
} else } else
r4k_blast_icache_page_indexed(page); r4k_blast_icache_page_indexed(page);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment