]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
KVM: s390: only deliver service interrupt with payload
authorEric Farman <farman@linux.ibm.com>
Wed, 25 Feb 2026 15:20:13 +0000 (16:20 +0100)
committerJanosch Frank <frankja@linux.ibm.com>
Tue, 31 Mar 2026 08:36:51 +0000 (08:36 +0000)
Routine __inject_service() may set both the SERVICE and SERVICE_EV
pending bits, and in the case of a pure service event the corresponding
trip through __deliver_service_ev() will clear the SERVICE_EV bit only.
This necessitates an additional trip through __deliver_service() for
the other pending interrupt bit, however it is possible that the
external interrupt parameters are zero and there is nothing to be
delivered to the guest.

To avoid sending empty data to the guest, let's only write out the SCLP
data when there is something for the guest to do, otherwise bail out.

Signed-off-by: Eric Farman <farman@linux.ibm.com>
Acked-by: Christian Borntraeger <borntraeger@linux.ibm.com>
Signed-off-by: Christian Borntraeger <borntraeger@linux.ibm.com>
Signed-off-by: Janosch Frank <frankja@linux.ibm.com>
arch/s390/kvm/interrupt.c

index 18932a65ca68316cbf2d9836c95f79c181d39d1d..dd0413387a9e08ce94e9754cb258671a13e48793 100644 (file)
@@ -956,6 +956,9 @@ static int __must_check __deliver_service(struct kvm_vcpu *vcpu)
                set_bit(IRQ_PEND_EXT_SERVICE, &fi->masked_irqs);
        spin_unlock(&fi->lock);
 
+       if (!ext.ext_params)
+               return 0;
+
        VCPU_EVENT(vcpu, 4, "deliver: sclp parameter 0x%x",
                   ext.ext_params);
        vcpu->stat.deliver_service_signal++;