Lines Matching refs:error_code

2273 				bool has_error_code, u32 error_code,  in vmx_queue_exception()  argument
2284 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code); in vmx_queue_exception()
5225 u32 intr_info, ex_no, error_code; in handle_exception() local
5255 error_code = 0; in handle_exception()
5257 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE); in handle_exception()
5265 !(is_page_fault(intr_info) && !(error_code & PFERR_RSVD_MASK))) { in handle_exception()
5271 vcpu->run->internal.data[2] = error_code; in handle_exception()
5279 trace_kvm_page_fault(cr2, error_code); in handle_exception()
5283 return kvm_mmu_page_fault(vcpu, cr2, error_code, NULL, 0); in handle_exception()
5289 return handle_rmode_exception(vcpu, ex_no, error_code); in handle_exception()
5293 kvm_queue_exception_e(vcpu, AC_VECTOR, error_code); in handle_exception()
5326 kvm_run->ex.error_code = error_code; in handle_exception()
5817 u32 error_code = 0; in handle_task_switch() local
5842 error_code = in handle_task_switch()
5862 has_error_code, error_code) == EMULATE_FAIL) { in handle_task_switch()
5881 u32 error_code; in handle_ept_violation() local
5914 error_code = exit_qualification & PFERR_WRITE_MASK; in handle_ept_violation()
5916 error_code |= (exit_qualification << 2) & PFERR_FETCH_MASK; in handle_ept_violation()
5918 error_code |= (exit_qualification >> 3) & PFERR_PRESENT_MASK; in handle_ept_violation()
5922 return kvm_mmu_page_fault(vcpu, gpa, error_code, NULL, 0); in handle_ept_violation()
8995 if (fault->error_code & PFERR_RSVD_MASK) in nested_ept_inject_page_fault()
9030 u16 error_code) in nested_vmx_is_page_fault_vmexit() argument
9036 (error_code & vmcs12->page_fault_error_code_mask) != in nested_vmx_is_page_fault_vmexit()
9048 if (nested_vmx_is_page_fault_vmexit(vmcs12, fault->error_code)) in vmx_inject_page_fault_nested()
10047 vcpu->arch.exception.error_code; in vmcs12_save_pending_event()