Home
last modified time | relevance | path

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

/linux-4.4.14/arch/x86/include/uapi/asm/
Dsvm.h28 #define SVM_EXIT_EXCP_BASE 0x040 macro
98 { SVM_EXIT_EXCP_BASE + DB_VECTOR, "DB excp" }, \
99 { SVM_EXIT_EXCP_BASE + BP_VECTOR, "BP excp" }, \
100 { SVM_EXIT_EXCP_BASE + UD_VECTOR, "UD excp" }, \
101 { SVM_EXIT_EXCP_BASE + PF_VECTOR, "PF excp" }, \
102 { SVM_EXIT_EXCP_BASE + NM_VECTOR, "NM excp" }, \
103 { SVM_EXIT_EXCP_BASE + AC_VECTOR, "AC excp" }, \
104 { SVM_EXIT_EXCP_BASE + MC_VECTOR, "MC excp" }, \
/linux-4.4.14/arch/x86/kvm/
Dsvm.c1962 svm->vmcb->control.exit_code = SVM_EXIT_EXCP_BASE + nr; in nested_svm_check_exception()
2111 case SVM_EXIT_EXCP_BASE + MC_VECTOR: in nested_svm_exit_special()
2118 case SVM_EXIT_EXCP_BASE + PF_VECTOR: in nested_svm_exit_special()
2123 case SVM_EXIT_EXCP_BASE + NM_VECTOR: in nested_svm_exit_special()
2160 case SVM_EXIT_EXCP_BASE ... SVM_EXIT_EXCP_BASE + 0x1f: { in nested_svm_intercept()
2161 u32 excp_bits = 1 << (exit_code - SVM_EXIT_EXCP_BASE); in nested_svm_intercept()
2165 else if ((exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR) && in nested_svm_intercept()
3267 [SVM_EXIT_EXCP_BASE + DB_VECTOR] = db_interception,
3268 [SVM_EXIT_EXCP_BASE + BP_VECTOR] = bp_interception,
3269 [SVM_EXIT_EXCP_BASE + UD_VECTOR] = ud_interception,
[all …]