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.c1588 case SVM_EXIT_EXCP_BASE ... SVM_EXIT_EXCP_BASE + 0x1f: in svm_check_nested_events()
1646 vmcb->control.exit_code = SVM_EXIT_EXCP_BASE + ex->vector; in svm_check_nested_events()
1765 case SVM_EXIT_EXCP_BASE ... SVM_EXIT_EXCP_BASE + 0x1f: { in svm_get_nested_state()
1766 u32 excp_bits = 1 << (exit_code - SVM_EXIT_EXCP_BASE); in svm_get_nested_state()
1771 else if (exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR && in svm_get_nested_state()
H A Dsvm.c3301 [SVM_EXIT_EXCP_BASE + DB_VECTOR] = db_interception,
3302 [SVM_EXIT_EXCP_BASE + BP_VECTOR] = bp_interception,
3303 [SVM_EXIT_EXCP_BASE + UD_VECTOR] = ud_interception,
3304 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception,
3305 [SVM_EXIT_EXCP_BASE + MC_VECTOR] = mc_interception,
3306 [SVM_EXIT_EXCP_BASE + AC_VECTOR] = ac_interception,
3307 [SVM_EXIT_EXCP_BASE + GP_VECTOR] = gp_interception,
4553 if (svm->vmcb->control.exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR)
4883 case SVM_EXIT_EXCP_BASE + MC_VECTOR: in svm_leave_smm()
/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()