aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arc/mm/tlb.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arc/mm/tlb.c')
-rw-r--r--arch/arc/mm/tlb.c18
1 files changed, 13 insertions, 5 deletions
diff --git a/arch/arc/mm/tlb.c b/arch/arc/mm/tlb.c
index 086be526072a..003d69ac6ffa 100644
--- a/arch/arc/mm/tlb.c
+++ b/arch/arc/mm/tlb.c
@@ -418,9 +418,10 @@ void create_tlb(struct vm_area_struct *vma, unsigned long address, pte_t *ptep)
418 local_irq_restore(flags); 418 local_irq_restore(flags);
419} 419}
420 420
421/* arch hook called by core VM at the end of handle_mm_fault( ), 421/*
422 * when a new PTE is entered in Page Tables or an existing one 422 * Called at the end of pagefault, for a userspace mapped page
423 * is modified. We aggresively pre-install a TLB entry 423 * -pre-install the corresponding TLB entry into MMU
424 * -Finalize the delayed D-cache flush (wback+inv kernel mapping)
424 */ 425 */
425void update_mmu_cache(struct vm_area_struct *vma, unsigned long vaddr_unaligned, 426void update_mmu_cache(struct vm_area_struct *vma, unsigned long vaddr_unaligned,
426 pte_t *ptep) 427 pte_t *ptep)
@@ -431,8 +432,15 @@ void update_mmu_cache(struct vm_area_struct *vma, unsigned long vaddr_unaligned,
431 432
432 /* icache doesn't snoop dcache, thus needs to be made coherent here */ 433 /* icache doesn't snoop dcache, thus needs to be made coherent here */
433 if (vma->vm_flags & VM_EXEC) { 434 if (vma->vm_flags & VM_EXEC) {
434 unsigned long paddr = pte_val(*ptep) & PAGE_MASK; 435 struct page *page = pfn_to_page(pte_pfn(*ptep));
435 __inv_icache_page(paddr, vaddr); 436
437 /* if page was dcache dirty, flush now */
438 int dirty = test_and_clear_bit(PG_arch_1, &page->flags);
439 if (dirty) {
440 unsigned long paddr = pte_val(*ptep) & PAGE_MASK;
441 __flush_dcache_page(paddr);
442 __inv_icache_page(paddr, vaddr);
443 }
436 } 444 }
437} 445}
438 446