Searched refs:SVM_EXIT_EXCP_BASE (Results 1 – 2 of 2) sorted by relevance
/linux-4.1.27/arch/x86/include/uapi/asm/ |
D | svm.h | 28 #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.1.27/arch/x86/kvm/ |
D | svm.c | 2045 svm->vmcb->control.exit_code = SVM_EXIT_EXCP_BASE + nr; in nested_svm_check_exception() 2194 case SVM_EXIT_EXCP_BASE + MC_VECTOR: in nested_svm_exit_special() 2201 case SVM_EXIT_EXCP_BASE + PF_VECTOR: in nested_svm_exit_special() 2206 case SVM_EXIT_EXCP_BASE + NM_VECTOR: in nested_svm_exit_special() 2243 case SVM_EXIT_EXCP_BASE ... SVM_EXIT_EXCP_BASE + 0x1f: { in nested_svm_intercept() 2244 u32 excp_bits = 1 << (exit_code - SVM_EXIT_EXCP_BASE); in nested_svm_intercept() 2248 else if ((exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR) && in nested_svm_intercept() 3358 [SVM_EXIT_EXCP_BASE + DB_VECTOR] = db_interception, 3359 [SVM_EXIT_EXCP_BASE + BP_VECTOR] = bp_interception, 3360 [SVM_EXIT_EXCP_BASE + UD_VECTOR] = ud_interception, [all …]
|