Home
last modified time | relevance | path

Searched refs:pml4_root (Results 1 – 2 of 2) sorted by relevance

/linux/arch/x86/kvm/mmu/
H A Dmmu.c3863 if (WARN_ON_ONCE(!mmu->pml4_root)) { in mmu_alloc_shadow_roots()
3867 mmu->pml4_root[0] = __pa(mmu->pae_root) | pm_mask; in mmu_alloc_shadow_roots()
3874 mmu->pml5_root[0] = __pa(mmu->pml4_root) | pm_mask; in mmu_alloc_shadow_roots()
3904 mmu->root.hpa = __pa(mmu->pml4_root); in mmu_alloc_shadow_roots()
3921 u64 *pml4_root = NULL; in mmu_alloc_special_roots() local
3942 if (mmu->pae_root && mmu->pml4_root && (!need_pml5 || mmu->pml5_root)) in mmu_alloc_special_roots()
3949 if (WARN_ON_ONCE(!tdp_enabled || mmu->pae_root || mmu->pml4_root || in mmu_alloc_special_roots()
3962 pml4_root = (void *)get_zeroed_page(GFP_KERNEL_ACCOUNT); in mmu_alloc_special_roots()
3963 if (!pml4_root) in mmu_alloc_special_roots()
3974 mmu->pml4_root = pml4_root; in mmu_alloc_special_roots()
[all …]
/linux/arch/x86/include/asm/
H A Dkvm_host.h482 u64 *pml4_root; member