diff options
Diffstat (limited to 'drivers/kvm/vmx.c')
-rw-r--r-- | drivers/kvm/vmx.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/kvm/vmx.c b/drivers/kvm/vmx.c index d06c3627f640..b47ddccc7d7a 100644 --- a/drivers/kvm/vmx.c +++ b/drivers/kvm/vmx.c | |||
@@ -1992,13 +1992,13 @@ static int vmx_vcpu_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run) | |||
1992 | int r; | 1992 | int r; |
1993 | 1993 | ||
1994 | preempted: | 1994 | preempted: |
1995 | if (!vcpu->mmio_read_completed) | ||
1996 | do_interrupt_requests(vcpu, kvm_run); | ||
1997 | |||
1998 | if (vcpu->guest_debug.enabled) | 1995 | if (vcpu->guest_debug.enabled) |
1999 | kvm_guest_debug_pre(vcpu); | 1996 | kvm_guest_debug_pre(vcpu); |
2000 | 1997 | ||
2001 | again: | 1998 | again: |
1999 | if (!vcpu->mmio_read_completed) | ||
2000 | do_interrupt_requests(vcpu, kvm_run); | ||
2001 | |||
2002 | vmx_save_host_state(vcpu); | 2002 | vmx_save_host_state(vcpu); |
2003 | kvm_load_guest_fpu(vcpu); | 2003 | kvm_load_guest_fpu(vcpu); |
2004 | 2004 | ||