diff options
author | Alexander Graf <agraf@suse.de> | 2012-08-02 15:10:00 +0200 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2012-10-05 23:38:39 +0200 |
commit | 97c95059848358f1577f471ec47cf68690f996e4 (patch) | |
tree | ccb8bc46b80cb694fee366b4bf46ae65e6285830 /arch/powerpc/kvm/book3s_pr.c | |
parent | PPC: Don't use hardcoded opcode for ePAPR hcall invocation (diff) | |
download | linux-97c95059848358f1577f471ec47cf68690f996e4.tar.xz linux-97c95059848358f1577f471ec47cf68690f996e4.zip |
KVM: PPC: PR: Use generic tracepoint for guest exit
We want to have tracing information on guest exits for booke as well
as book3s. Since most information is identical, use a common trace point.
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'arch/powerpc/kvm/book3s_pr.c')
-rw-r--r-- | arch/powerpc/kvm/book3s_pr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kvm/book3s_pr.c b/arch/powerpc/kvm/book3s_pr.c index 05c28f59f77f..7f0fe6f9e297 100644 --- a/arch/powerpc/kvm/book3s_pr.c +++ b/arch/powerpc/kvm/book3s_pr.c @@ -549,7 +549,7 @@ int kvmppc_handle_exit(struct kvm_run *run, struct kvm_vcpu *vcpu, /* We get here with MSR.EE=0, so enable it to be a nice citizen */ __hard_irq_enable(); - trace_kvm_book3s_exit(exit_nr, vcpu); + trace_kvm_exit(exit_nr, vcpu); preempt_enable(); kvm_resched(vcpu); switch (exit_nr) { |