diff options
Diffstat (limited to 'arch/arm/kvm')
-rw-r--r-- | arch/arm/kvm/arm.c | 3 | ||||
-rw-r--r-- | arch/arm/kvm/coproc.c | 2 | ||||
-rw-r--r-- | arch/arm/kvm/mmio.c | 2 |
3 files changed, 3 insertions, 4 deletions
diff --git a/arch/arm/kvm/arm.c b/arch/arm/kvm/arm.c index 6626c7e62371..31616336255c 100644 --- a/arch/arm/kvm/arm.c +++ b/arch/arm/kvm/arm.c | |||
@@ -624,8 +624,7 @@ static int handle_exit(struct kvm_vcpu *vcpu, struct kvm_run *run, | |||
624 | * that fail their condition code check" | 624 | * that fail their condition code check" |
625 | */ | 625 | */ |
626 | if (!kvm_condition_valid(vcpu)) { | 626 | if (!kvm_condition_valid(vcpu)) { |
627 | bool is_wide = kvm_vcpu_get_hsr(vcpu) & HSR_IL; | 627 | kvm_skip_instr(vcpu, kvm_vcpu_trap_il_is32bit(vcpu)); |
628 | kvm_skip_instr(vcpu, is_wide); | ||
629 | return 1; | 628 | return 1; |
630 | } | 629 | } |
631 | 630 | ||
diff --git a/arch/arm/kvm/coproc.c b/arch/arm/kvm/coproc.c index b30591615da4..94eee8befc83 100644 --- a/arch/arm/kvm/coproc.c +++ b/arch/arm/kvm/coproc.c | |||
@@ -293,7 +293,7 @@ static int emulate_cp15(struct kvm_vcpu *vcpu, | |||
293 | 293 | ||
294 | if (likely(r->access(vcpu, params, r))) { | 294 | if (likely(r->access(vcpu, params, r))) { |
295 | /* Skip instruction, since it was emulated */ | 295 | /* Skip instruction, since it was emulated */ |
296 | kvm_skip_instr(vcpu, (kvm_vcpu_get_hsr(vcpu) >> 25) & 1); | 296 | kvm_skip_instr(vcpu, kvm_vcpu_trap_il_is32bit(vcpu)); |
297 | return 1; | 297 | return 1; |
298 | } | 298 | } |
299 | /* If access function fails, it should complain. */ | 299 | /* If access function fails, it should complain. */ |
diff --git a/arch/arm/kvm/mmio.c b/arch/arm/kvm/mmio.c index 0b8f49985b70..02ca76555bd4 100644 --- a/arch/arm/kvm/mmio.c +++ b/arch/arm/kvm/mmio.c | |||
@@ -101,7 +101,7 @@ static int decode_hsr(struct kvm_vcpu *vcpu, phys_addr_t fault_ipa, | |||
101 | * The MMIO instruction is emulated and should not be re-executed | 101 | * The MMIO instruction is emulated and should not be re-executed |
102 | * in the guest. | 102 | * in the guest. |
103 | */ | 103 | */ |
104 | kvm_skip_instr(vcpu, (kvm_vcpu_get_hsr(vcpu) >> 25) & 1); | 104 | kvm_skip_instr(vcpu, kvm_vcpu_trap_il_is32bit(vcpu)); |
105 | return 0; | 105 | return 0; |
106 | } | 106 | } |
107 | 107 | ||