Searched refs:PF_VECTOR (Results 1 – 12 of 12) sorted by relevance
/arch/x86/kvm/vmx/ |
D | sgx.c | 114 if (trapnr == PF_VECTOR && !boot_cpu_has(X86_FEATURE_SGX2)) { in sgx_inject_fault() 127 if ((trapnr == PF_VECTOR || !boot_cpu_has(X86_FEATURE_SGX2)) && in sgx_inject_fault() 130 ex.vector = PF_VECTOR; in sgx_inject_fault()
|
D | vmcs.h | 114 return is_exception_n(intr_info, PF_VECTOR); in is_page_fault()
|
D | nested.c | 424 bit = (vmcs12->exception_bitmap & (1u << PF_VECTOR)) != 0; in nested_vmx_is_page_fault_vmexit() 443 if (nr == PF_VECTOR) { in nested_vmx_check_exception() 481 PF_VECTOR | INTR_TYPE_HARD_EXCEPTION | in vmx_inject_page_fault_nested()
|
D | vmx.c | 779 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) | in vmx_update_exception_bitmap() 796 eb &= ~(1u << PF_VECTOR); in vmx_update_exception_bitmap() 808 if (enable_ept && (eb & (1u << PF_VECTOR))) { in vmx_update_exception_bitmap()
|
/arch/x86/include/uapi/asm/ |
D | svm.h | 157 { SVM_EXIT_EXCP_BASE + PF_VECTOR, "PF excp" }, \
|
D | kvm.h | 29 #define PF_VECTOR 14 macro
|
/arch/x86/kvm/svm/ |
D | nested.c | 61 if (vmcb_is_intercept(&svm->nested.ctl, INTERCEPT_EXCEPTION_OFFSET + PF_VECTOR) && in svm_inject_page_fault_nested() 63 svm->vmcb->control.exit_code = SVM_EXIT_EXCP_BASE + PF_VECTOR; in svm_inject_page_fault_nested() 1104 if (nr == PF_VECTOR) { in nested_svm_inject_exception_vmexit() 1207 else if (exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR && in nested_svm_exit_special()
|
D | svm.c | 1189 set_exception_intercept(svm, PF_VECTOR); in init_vmcb() 1269 clr_exception_intercept(svm, PF_VECTOR); in init_vmcb() 3120 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception, 3921 if (svm->vmcb->control.exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR) in svm_vcpu_run()
|
/arch/x86/kvm/ |
D | x86.h | 179 BIT(PF_VECTOR) | BIT(AC_VECTOR); in x86_exception_has_error_code()
|
D | x86.c | 514 case PF_VECTOR: in exception_class() 605 case PF_VECTOR: in kvm_deliver_exception_payload() 739 kvm_queue_exception_e(vcpu, PF_VECTOR, fault->error_code); in kvm_inject_page_fault() 741 kvm_queue_exception_e_p(vcpu, PF_VECTOR, fault->error_code, in kvm_inject_page_fault() 751 WARN_ON_ONCE(fault->vector != PF_VECTOR); in kvm_inject_emulated_page_fault() 7659 if (ctxt->exception.vector == PF_VECTOR) in inject_emulated_exception() 12266 fault.vector = PF_VECTOR; in kvm_arch_async_page_not_present() 12469 fault.vector = PF_VECTOR; in kvm_fixup_and_inject_pf_error()
|
D | emulate.c | 5582 ctxt->exception.vector == PF_VECTOR) in x86_emulate_insn()
|
/arch/x86/kvm/mmu/ |
D | paging_tmpl.h | 503 walker->fault.vector = PF_VECTOR; in FNAME()
|