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/include/asm/kvm_emulate.h | |
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/include/asm/kvm_emulate.h')
-rw-r--r-- | arch/arm/include/asm/kvm_emulate.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/include/asm/kvm_emulate.h b/arch/arm/include/asm/kvm_emulate.h index e14268c77af0..9cb2fe17cf3a 100644 --- a/arch/arm/include/asm/kvm_emulate.h +++ b/arch/arm/include/asm/kvm_emulate.h @@ -158,4 +158,9 @@ static inline u8 kvm_vcpu_trap_get_fault(struct kvm_vcpu *vcpu) return kvm_vcpu_get_hsr(vcpu) & HSR_FSC_TYPE; } +static inline u32 kvm_vcpu_hvc_get_imm(struct kvm_vcpu *vcpu) +{ + return kvm_vcpu_get_hsr(vcpu) & HSR_HVC_IMM_MASK; +} + #endif /* __ARM_KVM_EMULATE_H__ */ |