Searched refs:mpnt (Results 1 – 4 of 4) sorted by relevance
/arch/arm/mm/ |
D | fault-armv.c | 136 struct vm_area_struct *mpnt; in make_coherent() local 149 vma_interval_tree_foreach(mpnt, &mapping->i_mmap, pgoff, pgoff) { in make_coherent() 155 if (mpnt->vm_mm != mm || mpnt == vma) in make_coherent() 157 if (!(mpnt->vm_flags & VM_MAYSHARE)) in make_coherent() 159 offset = (pgoff - mpnt->vm_pgoff) << PAGE_SHIFT; in make_coherent() 160 aliases += adjust_pte(mpnt, mpnt->vm_start + offset, pfn); in make_coherent()
|
D | flush.c | 244 struct vm_area_struct *mpnt; in __flush_dcache_aliases() local 256 vma_interval_tree_foreach(mpnt, &mapping->i_mmap, pgoff, pgoff) { in __flush_dcache_aliases() 262 if (mpnt->vm_mm != mm) in __flush_dcache_aliases() 264 if (!(mpnt->vm_flags & VM_MAYSHARE)) in __flush_dcache_aliases() 266 offset = (pgoff - mpnt->vm_pgoff) << PAGE_SHIFT; in __flush_dcache_aliases() 267 flush_cache_page(mpnt, mpnt->vm_start + offset, page_to_pfn(page)); in __flush_dcache_aliases()
|
/arch/nios2/mm/ |
D | cacheflush.c | 76 struct vm_area_struct *mpnt; in flush_aliases() local 82 vma_interval_tree_foreach(mpnt, &mapping->i_mmap, pgoff, pgoff) { in flush_aliases() 85 if (mpnt->vm_mm != mm) in flush_aliases() 87 if (!(mpnt->vm_flags & VM_MAYSHARE)) in flush_aliases() 90 offset = (pgoff - mpnt->vm_pgoff) << PAGE_SHIFT; in flush_aliases() 91 flush_cache_page(mpnt, mpnt->vm_start + offset, in flush_aliases()
|
/arch/parisc/kernel/ |
D | cache.c | 307 struct vm_area_struct *mpnt; in flush_dcache_page() local 330 vma_interval_tree_foreach(mpnt, &mapping->i_mmap, pgoff, pgoff) { in flush_dcache_page() 331 offset = (pgoff - mpnt->vm_pgoff) << PAGE_SHIFT; in flush_dcache_page() 332 addr = mpnt->vm_start + offset; in flush_dcache_page() 343 flush_tlb_page(mpnt, addr); in flush_dcache_page() 346 __flush_cache_page(mpnt, addr, page_to_phys(page)); in flush_dcache_page() 348 …printk(KERN_ERR "INEQUIVALENT ALIASES 0x%lx and 0x%lx in file %pD\n", old_addr, addr, mpnt->vm_fil… in flush_dcache_page()
|