Home
last modified time | relevance | path

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

/linux/tools/arch/x86/include/uapi/asm/
H A Dsvm.h31 #define SVM_EXIT_EXCP_BASE 0x040 macro
166 { SVM_EXIT_EXCP_BASE + DE_VECTOR, "DE excp" }, \
167 { SVM_EXIT_EXCP_BASE + DB_VECTOR, "DB excp" }, \
168 { SVM_EXIT_EXCP_BASE + BP_VECTOR, "BP excp" }, \
169 { SVM_EXIT_EXCP_BASE + OF_VECTOR, "OF excp" }, \
170 { SVM_EXIT_EXCP_BASE + BR_VECTOR, "BR excp" }, \
171 { SVM_EXIT_EXCP_BASE + UD_VECTOR, "UD excp" }, \
172 { SVM_EXIT_EXCP_BASE + NM_VECTOR, "NM excp" }, \
173 { SVM_EXIT_EXCP_BASE + DF_VECTOR, "DF excp" }, \
174 { SVM_EXIT_EXCP_BASE + TS_VECTOR, "TS excp" }, \
[all …]
/linux/arch/x86/kvm/svm/
H A Dnested.c1486 case SVM_EXIT_EXCP_BASE ... SVM_EXIT_EXCP_BASE + 0x1f: in nested_svm_intercept()
1544 vmcb->control.exit_code = SVM_EXIT_EXCP_BASE + ex->vector; in nested_svm_inject_exception_vmexit()
1663 case SVM_EXIT_EXCP_BASE ... SVM_EXIT_EXCP_BASE + 0x1f: { in nested_svm_exit_special()
1664 u32 excp_bits = 1 << (exit_code - SVM_EXIT_EXCP_BASE); in nested_svm_exit_special()
1669 else if (exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR && in nested_svm_exit_special()
H A Dsvm.c3257 [SVM_EXIT_EXCP_BASE + DB_VECTOR] = db_interception,
3258 [SVM_EXIT_EXCP_BASE + BP_VECTOR] = bp_interception,
3259 [SVM_EXIT_EXCP_BASE + UD_VECTOR] = ud_interception,
3260 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception,
3261 [SVM_EXIT_EXCP_BASE + MC_VECTOR] = mc_interception,
3262 [SVM_EXIT_EXCP_BASE + AC_VECTOR] = ac_interception,
3263 [SVM_EXIT_EXCP_BASE + GP_VECTOR] = gp_interception,
4425 if (svm->vmcb->control.exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR) in svm_vcpu_run()
4737 case SVM_EXIT_EXCP_BASE + MC_VECTOR: in svm_handle_exit_irqoff()
/linux/tools/testing/selftests/kvm/x86/
H A Dnested_exceptions_test.c86 GUEST_ASSERT_EQ(ctrl->exit_code, (SVM_EXIT_EXCP_BASE + vector)); in svm_run_l2()