diff options
-rw-r--r-- | arch/x86/kvm/x86.c | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c index 00acf1301a15..b90744a1dc3a 100644 --- a/arch/x86/kvm/x86.c +++ b/arch/x86/kvm/x86.c | |||
@@ -2759,6 +2759,8 @@ again: | |||
2759 | if (vcpu->requests) { | 2759 | if (vcpu->requests) { |
2760 | if (test_and_clear_bit(KVM_REQ_MIGRATE_TIMER, &vcpu->requests)) | 2760 | if (test_and_clear_bit(KVM_REQ_MIGRATE_TIMER, &vcpu->requests)) |
2761 | __kvm_migrate_timers(vcpu); | 2761 | __kvm_migrate_timers(vcpu); |
2762 | if (test_and_clear_bit(KVM_REQ_TLB_FLUSH, &vcpu->requests)) | ||
2763 | kvm_x86_ops->tlb_flush(vcpu); | ||
2762 | if (test_and_clear_bit(KVM_REQ_REPORT_TPR_ACCESS, | 2764 | if (test_and_clear_bit(KVM_REQ_REPORT_TPR_ACCESS, |
2763 | &vcpu->requests)) { | 2765 | &vcpu->requests)) { |
2764 | kvm_run->exit_reason = KVM_EXIT_TPR_ACCESS; | 2766 | kvm_run->exit_reason = KVM_EXIT_TPR_ACCESS; |
@@ -2781,21 +2783,13 @@ again: | |||
2781 | 2783 | ||
2782 | local_irq_disable(); | 2784 | local_irq_disable(); |
2783 | 2785 | ||
2784 | if (need_resched()) { | 2786 | if (vcpu->requests || need_resched()) { |
2785 | local_irq_enable(); | 2787 | local_irq_enable(); |
2786 | preempt_enable(); | 2788 | preempt_enable(); |
2787 | r = 1; | 2789 | r = 1; |
2788 | goto out; | 2790 | goto out; |
2789 | } | 2791 | } |
2790 | 2792 | ||
2791 | if (vcpu->requests) | ||
2792 | if (test_bit(KVM_REQ_MMU_RELOAD, &vcpu->requests)) { | ||
2793 | local_irq_enable(); | ||
2794 | preempt_enable(); | ||
2795 | r = 1; | ||
2796 | goto out; | ||
2797 | } | ||
2798 | |||
2799 | if (signal_pending(current)) { | 2793 | if (signal_pending(current)) { |
2800 | local_irq_enable(); | 2794 | local_irq_enable(); |
2801 | preempt_enable(); | 2795 | preempt_enable(); |
@@ -2825,9 +2819,6 @@ again: | |||
2825 | 2819 | ||
2826 | kvm_guest_enter(); | 2820 | kvm_guest_enter(); |
2827 | 2821 | ||
2828 | if (vcpu->requests) | ||
2829 | if (test_and_clear_bit(KVM_REQ_TLB_FLUSH, &vcpu->requests)) | ||
2830 | kvm_x86_ops->tlb_flush(vcpu); | ||
2831 | 2822 | ||
2832 | KVMTRACE_0D(VMENTRY, vcpu, entryexit); | 2823 | KVMTRACE_0D(VMENTRY, vcpu, entryexit); |
2833 | kvm_x86_ops->run(vcpu, kvm_run); | 2824 | kvm_x86_ops->run(vcpu, kvm_run); |