]> git.hungrycats.org Git - linux/commitdiff
KVM: s390: unintended fallthrough for external call
authorChristian Borntraeger <borntraeger@de.ibm.com>
Wed, 3 Sep 2014 14:21:32 +0000 (16:21 +0200)
committerJiri Slaby <jslaby@suse.cz>
Fri, 31 Oct 2014 14:11:08 +0000 (15:11 +0100)
commit f346026e55f1efd3949a67ddd1dcea7c1b9a615e upstream.

We must not fallthrough if the conditions for external call are not met.

Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
Reviewed-by: Thomas Huth <thuth@linux.vnet.ibm.com>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
arch/s390/kvm/interrupt.c

index 7f1f7ac5cf7f8a2c3f3966d4fe96fa23af90ea04..2df491b03687449f4b4e88aa1acb8b8e35edde6a 100644 (file)
@@ -71,6 +71,7 @@ static int __interrupt_is_deliverable(struct kvm_vcpu *vcpu,
                        return 0;
                if (vcpu->arch.sie_block->gcr[0] & 0x2000ul)
                        return 1;
+               return 0;
        case KVM_S390_INT_EMERGENCY:
                if (psw_extint_disabled(vcpu))
                        return 0;