aboutsummaryrefslogtreecommitdiffstats
path: root/arch/ppc/mm
diff options
context:
space:
mode:
Diffstat (limited to 'arch/ppc/mm')
-rw-r--r--arch/ppc/mm/init.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/arch/ppc/mm/init.c b/arch/ppc/mm/init.c
index db94efd25369..99b48abd3296 100644
--- a/arch/ppc/mm/init.c
+++ b/arch/ppc/mm/init.c
@@ -637,18 +637,16 @@ void update_mmu_cache(struct vm_area_struct *vma, unsigned long address,
637 */ 637 */
638int page_is_ram(unsigned long pfn) 638int page_is_ram(unsigned long pfn)
639{ 639{
640 unsigned long paddr = (pfn << PAGE_SHIFT); 640 return pfn < max_pfn;
641
642 return paddr < __pa(high_memory);
643} 641}
644 642
645pgprot_t phys_mem_access_prot(struct file *file, unsigned long addr, 643pgprot_t phys_mem_access_prot(struct file *file, unsigned long pfn,
646 unsigned long size, pgprot_t vma_prot) 644 unsigned long size, pgprot_t vma_prot)
647{ 645{
648 if (ppc_md.phys_mem_access_prot) 646 if (ppc_md.phys_mem_access_prot)
649 return ppc_md.phys_mem_access_prot(file, addr, size, vma_prot); 647 return ppc_md.phys_mem_access_prot(file, pfn, size, vma_prot);
650 648
651 if (!page_is_ram(addr >> PAGE_SHIFT)) 649 if (!page_is_ram(pfn))
652 vma_prot = __pgprot(pgprot_val(vma_prot) 650 vma_prot = __pgprot(pgprot_val(vma_prot)
653 | _PAGE_GUARDED | _PAGE_NO_CACHE); 651 | _PAGE_GUARDED | _PAGE_NO_CACHE);
654 return vma_prot; 652 return vma_prot;