Home
last modified time | relevance | path

Searched refs:PF_VECTOR (Results 1 – 6 of 6) sorted by relevance

/linux-3.4.99/arch/x86/kvm/
Dsvm.c1081 set_exception_intercept(svm, PF_VECTOR); in init_vmcb()
1161 clr_exception_intercept(svm, PF_VECTOR); in init_vmcb()
2172 case SVM_EXIT_EXCP_BASE + PF_VECTOR: in nested_svm_exit_special()
2219 else if ((exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR) && in nested_svm_intercept()
3291 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception,
3487 exit_code != SVM_EXIT_EXCP_BASE + PF_VECTOR && in handle_exit()
3918 if (svm->vmcb->control.exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR) in svm_vcpu_run()
Dpaging_tmpl.h315 walker->fault.vector = PF_VECTOR; in FNAME()
Dtrace.h245 { SVM_EXIT_EXCP_BASE + PF_VECTOR, "PF excp" }, \
Dx86.c273 case PF_VECTOR: in exception_class()
354 kvm_queue_exception_e(vcpu, PF_VECTOR, fault->error_code); in kvm_inject_page_fault()
4356 if (ctxt->exception.vector == PF_VECTOR) in inject_emulated_exception()
6518 fault.vector = PF_VECTOR; in kvm_arch_async_page_not_present()
6540 fault.vector = PF_VECTOR; in kvm_arch_async_page_present()
Dvmx.c689 (INTR_TYPE_HARD_EXCEPTION | PF_VECTOR | INTR_INFO_VALID_MASK); in is_page_fault()
1170 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) | in update_exception_bitmap()
1179 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */ in update_exception_bitmap()
1667 if (!(vmcs12->exception_bitmap & (1u << PF_VECTOR))) in nested_pf_handled()
1681 if (nr == PF_VECTOR && is_guest_mode(vcpu) && in vmx_queue_exception()
/linux-3.4.99/arch/x86/include/asm/
Dkvm_host.h88 #define PF_VECTOR 14 macro