| Submitter | Alexander Graf |
|---|---|
| Date | Aug. 14, 2012, 11:04 p.m. |
| Message ID | <1344985483-7440-32-git-send-email-agraf@suse.de> |
| Download | mbox | patch |
| Permalink | /patch/177484/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/arch/powerpc/kvm/powerpc.c b/arch/powerpc/kvm/powerpc.c index fbf18be..3855c0f 100644 --- a/arch/powerpc/kvm/powerpc.c +++ b/arch/powerpc/kvm/powerpc.c @@ -89,11 +89,6 @@ int kvmppc_prepare_to_enter(struct kvm_vcpu *vcpu) continue; } - if (vcpu->mode == EXITING_GUEST_MODE) { - r = 1; - break; - } - #ifdef CONFIG_PPC64 /* lazy EE magic */ hard_irq_disable();
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: Alexander Graf <agraf@suse.de> --- arch/powerpc/kvm/powerpc.c | 5 ----- 1 files changed, 0 insertions(+), 5 deletions(-)