Searched refs:PF_VECTOR (Results 1 – 14 of 14) sorted by relevance
/linux/arch/x86/kvm/vmx/ |
H A D | sgx.c | 114 if (trapnr == PF_VECTOR && !boot_cpu_has(X86_FEATURE_SGX2)) { in sgx_inject_fault() 125 if ((trapnr == PF_VECTOR || !boot_cpu_has(X86_FEATURE_SGX2)) && in sgx_inject_fault() 128 ex.vector = PF_VECTOR; in sgx_inject_fault()
|
H A D | vmcs.h | 115 return is_exception_n(intr_info, PF_VECTOR); in is_page_fault()
|
H A D | nested.c | 498 bit = (vmcs12->exception_bitmap & (1u << PF_VECTOR)) != 0; in nested_vmx_is_page_fault_vmexit() 517 if (vector == PF_VECTOR) in nested_vmx_is_exception_vmexit() 3963 } else if (ex->vector == PF_VECTOR) { in nested_vmx_inject_exception_vmexit()
|
/linux/tools/testing/selftests/kvm/x86_64/ |
H A D | smaller_maxphyaddr_emulation_test.c | 38 GUEST_ASSERT_EQ(vector, PF_VECTOR); in guest_code()
|
H A D | svm_nested_soft_inject_test.c | 93 vmcb->control.intercept_exceptions |= BIT(PF_VECTOR) | BIT(UD_VECTOR); in l1_guest_code()
|
/linux/arch/x86/include/uapi/asm/ |
H A D | svm.h | 172 { SVM_EXIT_EXCP_BASE + PF_VECTOR, "PF excp" }, \
|
H A D | kvm.h | 32 #define PF_VECTOR 14 macro
|
/linux/tools/arch/x86/include/uapi/asm/ |
H A D | svm.h | 172 { SVM_EXIT_EXCP_BASE + PF_VECTOR, "PF excp" }, \
|
H A D | kvm.h | 32 #define PF_VECTOR 14 macro
|
/linux/arch/x86/kvm/ |
H A D | x86.h | 201 BIT(PF_VECTOR) | BIT(AC_VECTOR); in x86_exception_has_error_code()
|
H A D | x86.c | 723 case PF_VECTOR: in exception_class() 811 case PF_VECTOR: in kvm_deliver_exception_payload() 978 kvm_queue_exception_vmexit(vcpu, PF_VECTOR, in kvm_inject_page_fault() 982 kvm_queue_exception_e_p(vcpu, PF_VECTOR, fault->error_code, in kvm_inject_page_fault() 990 WARN_ON_ONCE(fault->vector != PF_VECTOR); in kvm_inject_emulated_page_fault() 8686 if (ctxt->exception.vector == PF_VECTOR) in inject_emulated_exception() 13424 fault.vector = PF_VECTOR; in kvm_arch_async_page_not_present() 13665 fault.vector = PF_VECTOR; in kvm_fixup_and_inject_pf_error()
|
H A D | emulate.c | 5230 ctxt->exception.vector == PF_VECTOR) in x86_emulate_insn()
|
/linux/arch/x86/kvm/mmu/ |
H A D | paging_tmpl.h | 481 walker->fault.vector = PF_VECTOR; in FNAME()
|
/linux/arch/x86/kvm/svm/ |
H A D | svm.c | 1254 set_exception_intercept(svm, PF_VECTOR); in init_vmcb() 1333 clr_exception_intercept(svm, PF_VECTOR); in init_vmcb() 3318 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception, 4307 if (svm->vmcb->control.exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR) in svm_vcpu_run()
|