aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/kvm/arm.c
diff options
context:
space:
mode:
authorMarc Zyngier <marc.zyngier@arm.com>2012-09-18 09:09:58 -0400
committerChristoffer Dall <cdall@cs.columbia.edu>2013-03-06 18:48:43 -0500
commit4926d445eb76bec8ebd71f5ed9e9c94fd738014d (patch)
treeba608d6643fea298f0f7517a142a4cde78114056 /arch/arm/kvm/arm.c
parent23b415d61a80c0c63f43dd2b3a08a1fa0b79b8ea (diff)
ARM: KVM: abstract exception class decoding away
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Diffstat (limited to 'arch/arm/kvm/arm.c')
-rw-r--r--arch/arm/kvm/arm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/kvm/arm.c b/arch/arm/kvm/arm.c
index 31616336255c..269900174102 100644
--- a/arch/arm/kvm/arm.c
+++ b/arch/arm/kvm/arm.c
@@ -559,7 +559,7 @@ static bool kvm_condition_valid(struct kvm_vcpu *vcpu)
559 * catch undefined instructions, and then we won't get past 559 * catch undefined instructions, and then we won't get past
560 * the arm_exit_handlers test anyway. 560 * the arm_exit_handlers test anyway.
561 */ 561 */
562 BUG_ON(((kvm_vcpu_get_hsr(vcpu) & HSR_EC) >> HSR_EC_SHIFT) == 0); 562 BUG_ON(!kvm_vcpu_trap_get_class(vcpu));
563 563
564 /* Top two bits non-zero? Unconditional. */ 564 /* Top two bits non-zero? Unconditional. */
565 if (kvm_vcpu_get_hsr(vcpu) >> 30) 565 if (kvm_vcpu_get_hsr(vcpu) >> 30)
@@ -609,7 +609,7 @@ static int handle_exit(struct kvm_vcpu *vcpu, struct kvm_run *run,
609 case ARM_EXCEPTION_DATA_ABORT: 609 case ARM_EXCEPTION_DATA_ABORT:
610 case ARM_EXCEPTION_PREF_ABORT: 610 case ARM_EXCEPTION_PREF_ABORT:
611 case ARM_EXCEPTION_HVC: 611 case ARM_EXCEPTION_HVC:
612 hsr_ec = (kvm_vcpu_get_hsr(vcpu) & HSR_EC) >> HSR_EC_SHIFT; 612 hsr_ec = kvm_vcpu_trap_get_class(vcpu);
613 613
614 if (hsr_ec >= ARRAY_SIZE(arm_exit_handlers) 614 if (hsr_ec >= ARRAY_SIZE(arm_exit_handlers)
615 || !arm_exit_handlers[hsr_ec]) { 615 || !arm_exit_handlers[hsr_ec]) {