diff options
author | Kazuya Saito | 2013-03-29 05:27:52 +0100 |
---|---|---|
committer | Stefan Hajnoczi | 2013-05-03 13:58:09 +0200 |
commit | b76ac80a5ca9f2e19405419172c0dcaf0370d4f5 (patch) | |
tree | 644ef06330054f239318783d6c09b3389d15a65b /trace-events | |
parent | kvm-all: add kvm_ioctl, kvm_vm_ioctl, kvm_vcpu_ioctl tracepoints (diff) | |
download | qemu-b76ac80a5ca9f2e19405419172c0dcaf0370d4f5.tar.gz qemu-b76ac80a5ca9f2e19405419172c0dcaf0370d4f5.tar.xz qemu-b76ac80a5ca9f2e19405419172c0dcaf0370d4f5.zip |
kvm-all: add kvm_run_exit tracepoint
This patch enable us to know exit reason of KVM_RUN. It will help us
know where the trouble is caused.
Signed-off-by: Kazuya Saito <saito.kazuya@jp.fujitsu.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'trace-events')
-rw-r--r-- | trace-events | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/trace-events b/trace-events index d5bc7a5589..17d75abfe8 100644 --- a/trace-events +++ b/trace-events @@ -1158,3 +1158,5 @@ migrate_set_state(int new_state) "new state %d" kvm_ioctl(int type, void *arg) "type %d, arg %p" kvm_vm_ioctl(int type, void *arg) "type %d, arg %p" kvm_vcpu_ioctl(int cpu_index, int type, void *arg) "cpu_index %d, type %d, arg %p" +kvm_run_exit(int cpu_index, uint32_t reason) "cpu_index %d, reason %d" + |