Home
last modified time | relevance | path

Searched refs:pte_phys (Results 1 – 3 of 3) sorted by relevance

/linux/arch/arm64/mm/
H A Dmmu.c209 phys_addr_t pte_phys; in alloc_init_cont_pte() local
214 pte_phys = pgtable_alloc(PGTABLE_LEVEL_PTE); in alloc_init_cont_pte()
215 if (pte_phys == INVALID_PHYS_ADDR) in alloc_init_cont_pte()
217 ptep = pte_set_fixmap(pte_phys); in alloc_init_cont_pte()
220 __pmd_populate(pmdp, pte_phys, pmdval); in alloc_init_cont_pte()
609 phys_addr_t pte_phys; in split_pmd() local
613 pte_phys = pgd_pgtable_alloc_init_mm_gfp(PGTABLE_LEVEL_PTE, gfp); in split_pmd()
614 if (pte_phys == INVALID_PHYS_ADDR) in split_pmd()
616 ptep = (pte_t *)phys_to_virt(pte_phys); in split_pmd()
636 __pmd_populate(pmdp, pte_phys, tableprot); in split_pmd()
/linux/arch/x86/include/uapi/asm/
H A Dkvm_para.h121 __u64 pte_phys; member
/linux/arch/riscv/mm/
H A Dinit.c504 phys_addr_t pte_phys; in create_pmd_mapping() local
514 pte_phys = pt_ops.alloc_pte(va); in create_pmd_mapping()
515 pmdp[pmd_idx] = pfn_pmd(PFN_DOWN(pte_phys), PAGE_TABLE); in create_pmd_mapping()
516 ptep = pt_ops.get_pte_virt(pte_phys); in create_pmd_mapping()
519 pte_phys = PFN_PHYS(_pmd_pfn(pmdp[pmd_idx])); in create_pmd_mapping()
520 ptep = pt_ops.get_pte_virt(pte_phys); in create_pmd_mapping()