Commit 206c2ed7 authored by Alexander Graf's avatar Alexander Graf

KVM: PPC: Ignore EXITING_GUEST_MODE mode

We don't need to do anything when mode is EXITING_GUEST_MODE, because
we essentially are outside of guest mode and did everything it asked
us to do by the time we check it.
Signed-off-by: default avatarAlexander Graf <agraf@suse.de>
parent 3766a4c6
...@@ -89,11 +89,6 @@ int kvmppc_prepare_to_enter(struct kvm_vcpu *vcpu) ...@@ -89,11 +89,6 @@ int kvmppc_prepare_to_enter(struct kvm_vcpu *vcpu)
continue; continue;
} }
if (vcpu->mode == EXITING_GUEST_MODE) {
r = 1;
break;
}
#ifdef CONFIG_PPC64 #ifdef CONFIG_PPC64
/* lazy EE magic */ /* lazy EE magic */
hard_irq_disable(); hard_irq_disable();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment