diff options
author | Avi Kivity <avi@redhat.com> | 2010-11-17 18:44:19 +0200 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2011-01-12 11:29:40 +0200 |
commit | aa17911e3c21b63e3bf94c580ed029d6dad816b4 (patch) | |
tree | dc87c69b50b65d91cb85ef85def526365a6fdc59 /arch/x86/kvm/svm.c | |
parent | bd2b53b20fcd0d6c4c815b54e6d464e34429d3a4 (diff) | |
download | lwn-aa17911e3c21b63e3bf94c580ed029d6dad816b4.tar.gz lwn-aa17911e3c21b63e3bf94c580ed029d6dad816b4.zip |
KVM: Record instruction set in kvm_exit tracepoint
exit_reason's meaning depend on the instruction set; record it so a trace
taken on one machine can be interpreted on another.
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/x86/kvm/svm.c')
-rw-r--r-- | arch/x86/kvm/svm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kvm/svm.c b/arch/x86/kvm/svm.c index 7c7f03b5f39a..78a23086e16d 100644 --- a/arch/x86/kvm/svm.c +++ b/arch/x86/kvm/svm.c @@ -2980,7 +2980,7 @@ static int handle_exit(struct kvm_vcpu *vcpu) struct kvm_run *kvm_run = vcpu->run; u32 exit_code = svm->vmcb->control.exit_code; - trace_kvm_exit(exit_code, vcpu); + trace_kvm_exit(exit_code, vcpu, KVM_ISA_SVM); if (!(svm->vmcb->control.intercept_cr_write & INTERCEPT_CR0_MASK)) vcpu->arch.cr0 = svm->vmcb->save.cr0; |