Home
last modified time | relevance | path

Searched refs:eptp (Results 1 – 4 of 4) sorted by relevance

/arch/x86/kvm/vmx/
Dvmx_ops.h22 void invept_error(unsigned long ext, u64 eptp, gpa_t gpa);
266 static inline void __invept(unsigned long ext, u64 eptp, gpa_t gpa) in __invept() argument
269 u64 eptp, gpa; in __invept() member
270 } operand = {eptp, gpa}; in __invept()
272 vmx_asm2(invept, "r"(ext), "m"(operand), ext, eptp, gpa); in __invept()
312 static inline void ept_sync_context(u64 eptp) in ept_sync_context() argument
315 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0); in ept_sync_context()
Dvmx.c464 noinline void invept_error(unsigned long ext, u64 eptp, gpa_t gpa) in invept_error() argument
467 ext, eptp, gpa); in invept_error()
3165 u64 eptp = VMX_EPTP_MT_WB; in construct_eptp() local
3167 eptp |= (root_level == 5) ? VMX_EPTP_PWL_5 : VMX_EPTP_PWL_4; in construct_eptp()
3171 eptp |= VMX_EPTP_AD_ENABLE_BIT; in construct_eptp()
3172 eptp |= (root_hpa & PAGE_MASK); in construct_eptp()
3174 return eptp; in construct_eptp()
3183 u64 eptp; in vmx_load_mmu_pgd() local
3186 eptp = construct_eptp(vcpu, pgd, pgd_level); in vmx_load_mmu_pgd()
3187 vmcs_write64(EPT_POINTER, eptp); in vmx_load_mmu_pgd()
[all …]
Dnested.c5397 static bool nested_ept_root_matches(hpa_t root_hpa, u64 root_eptp, u64 eptp) in nested_ept_root_matches() argument
5400 ((root_eptp & EPTP_PA_MASK) == (eptp & EPTP_PA_MASK)); in nested_ept_root_matches()
5413 u64 eptp, gpa; in handle_invept() member
5453 if (!nested_vmx_check_eptp(vcpu, operand.eptp)) in handle_invept()
5459 operand.eptp)) in handle_invept()
5465 operand.eptp)) in handle_invept()
/arch/x86/include/asm/
Dvmx.h503 static inline u8 vmx_eptp_page_walk_level(u64 eptp) in vmx_eptp_page_walk_level() argument
505 u64 encoded_level = eptp & VMX_EPTP_PWL_MASK; in vmx_eptp_page_walk_level()