diff options
author | Christoffer Dall <cdall@cs.columbia.edu> | 2013-02-21 11:26:10 -0800 |
---|---|---|
committer | Christoffer Dall <cdall@cs.columbia.edu> | 2013-03-06 15:48:43 -0800 |
commit | c088f8f0088decf0ce172a6bb4a6f5742cc54c15 (patch) | |
tree | 234ffa8054524cdc532e1975737a09756264db3c /arch/arm/kvm/handle_exit.c | |
parent | 3414bbfff98b2524c0b2cdc4d0a78153ebf4f823 (diff) | |
download | blackbird-obmc-linux-c088f8f0088decf0ce172a6bb4a6f5742cc54c15.tar.gz blackbird-obmc-linux-c088f8f0088decf0ce172a6bb4a6f5742cc54c15.zip |
KVM: ARM: Reintroduce trace_kvm_hvc
This one got lost in the move to handle_exit, so let's reintroduce it
using an accessor to the immediate value field like the other ones.
Signed-off-by: Christoffer Dall <cdall@cs.columbia.edu>
Diffstat (limited to 'arch/arm/kvm/handle_exit.c')
-rw-r--r-- | arch/arm/kvm/handle_exit.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/kvm/handle_exit.c b/arch/arm/kvm/handle_exit.c index f1cc3a8a9c7e..301301808c4e 100644 --- a/arch/arm/kvm/handle_exit.c +++ b/arch/arm/kvm/handle_exit.c @@ -23,6 +23,8 @@ #include <asm/kvm_mmu.h> #include <asm/kvm_psci.h> +#include "trace.h" + typedef int (*exit_handle_fn)(struct kvm_vcpu *, struct kvm_run *); static int handle_svc_hyp(struct kvm_vcpu *vcpu, struct kvm_run *run) @@ -35,6 +37,9 @@ static int handle_svc_hyp(struct kvm_vcpu *vcpu, struct kvm_run *run) static int handle_hvc(struct kvm_vcpu *vcpu, struct kvm_run *run) { + trace_kvm_hvc(*vcpu_pc(vcpu), *vcpu_reg(vcpu, 0), + kvm_vcpu_hvc_get_imm(vcpu)); + if (kvm_psci_call(vcpu)) return 1; |