aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86
diff options
context:
space:
mode:
authorJoerg Roedel <joerg.roedel@amd.com>2008-04-30 11:56:01 -0400
committerAvi Kivity <avi@qumranet.com>2008-07-20 05:40:47 -0400
commita069805579a390f0fa91694f6963bcc4b2cecc6b (patch)
treead9497386d33930d50ecea7194c7df75f1bb744d /arch/x86
parentc47f098d69ed2bd7343e54095ff4aa2533253bee (diff)
KVM: SVM: implement dedicated INTR exit handler
With an exit handler for INTR intercepts its possible to account them using kvmtrace. Signed-off-by: Joerg Roedel <joerg.roedel@amd.com> Signed-off-by: Avi Kivity <avi@qumranet.com>
Diffstat (limited to 'arch/x86')
-rw-r--r--arch/x86/kvm/svm.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/arch/x86/kvm/svm.c b/arch/x86/kvm/svm.c
index 8a2118b09fd2..0eac1a5060a6 100644
--- a/arch/x86/kvm/svm.c
+++ b/arch/x86/kvm/svm.c
@@ -1086,6 +1086,12 @@ static int nmi_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
1086 return 1; 1086 return 1;
1087} 1087}
1088 1088
1089static int intr_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
1090{
1091 ++svm->vcpu.stat.irq_exits;
1092 return 1;
1093}
1094
1089static int nop_on_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run) 1095static int nop_on_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
1090{ 1096{
1091 return 1; 1097 return 1;
@@ -1369,7 +1375,7 @@ static int (*svm_exit_handlers[])(struct vcpu_svm *svm,
1369 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception, 1375 [SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception,
1370 [SVM_EXIT_EXCP_BASE + NM_VECTOR] = nm_interception, 1376 [SVM_EXIT_EXCP_BASE + NM_VECTOR] = nm_interception,
1371 [SVM_EXIT_EXCP_BASE + MC_VECTOR] = mc_interception, 1377 [SVM_EXIT_EXCP_BASE + MC_VECTOR] = mc_interception,
1372 [SVM_EXIT_INTR] = nop_on_interception, 1378 [SVM_EXIT_INTR] = intr_interception,
1373 [SVM_EXIT_NMI] = nmi_interception, 1379 [SVM_EXIT_NMI] = nmi_interception,
1374 [SVM_EXIT_SMI] = nop_on_interception, 1380 [SVM_EXIT_SMI] = nop_on_interception,
1375 [SVM_EXIT_INIT] = nop_on_interception, 1381 [SVM_EXIT_INIT] = nop_on_interception,