Lines Matching refs:next_phys
557 phys_addr_t next_phys; in create_pud_mapping() local
567 next_phys = pt_ops.alloc_pmd(va); in create_pud_mapping()
568 pudp[pud_index] = pfn_pud(PFN_DOWN(next_phys), PAGE_TABLE); in create_pud_mapping()
569 nextp = pt_ops.get_pmd_virt(next_phys); in create_pud_mapping()
572 next_phys = PFN_PHYS(_pud_pfn(pudp[pud_index])); in create_pud_mapping()
573 nextp = pt_ops.get_pmd_virt(next_phys); in create_pud_mapping()
584 phys_addr_t next_phys; in create_p4d_mapping() local
594 next_phys = pt_ops.alloc_pud(va); in create_p4d_mapping()
595 p4dp[p4d_index] = pfn_p4d(PFN_DOWN(next_phys), PAGE_TABLE); in create_p4d_mapping()
596 nextp = pt_ops.get_pud_virt(next_phys); in create_p4d_mapping()
599 next_phys = PFN_PHYS(_p4d_pfn(p4dp[p4d_index])); in create_p4d_mapping()
600 nextp = pt_ops.get_pud_virt(next_phys); in create_p4d_mapping()
642 phys_addr_t next_phys; in create_pgd_mapping() local
652 next_phys = alloc_pgd_next(va); in create_pgd_mapping()
653 pgdp[pgd_idx] = pfn_pgd(PFN_DOWN(next_phys), PAGE_TABLE); in create_pgd_mapping()
654 nextp = get_pgd_next_virt(next_phys); in create_pgd_mapping()
657 next_phys = PFN_PHYS(_pgd_pfn(pgdp[pgd_idx])); in create_pgd_mapping()
658 nextp = get_pgd_next_virt(next_phys); in create_pgd_mapping()