]> Git Repo - linux.git/commitdiff
KVM: x86: fix sending PV IPI
authorLi RongQing <[email protected]>
Wed, 9 Mar 2022 08:35:44 +0000 (16:35 +0800)
committerPaolo Bonzini <[email protected]>
Sat, 2 Apr 2022 09:37:27 +0000 (05:37 -0400)
If apic_id is less than min, and (max - apic_id) is greater than
KVM_IPI_CLUSTER_SIZE, then the third check condition is satisfied but
the new apic_id does not fit the bitmask.  In this case __send_ipi_mask
should send the IPI.

This is mostly theoretical, but it can happen if the apic_ids on three
iterations of the loop are for example 1, KVM_IPI_CLUSTER_SIZE, 0.

Fixes: aaffcfd1e82 ("KVM: X86: Implement PV IPIs in linux guest")
Signed-off-by: Li RongQing <[email protected]>
Message-Id: <1646814944[email protected]>
Cc: [email protected]
Signed-off-by: Paolo Bonzini <[email protected]>
arch/x86/kernel/kvm.c

index d77481ecb0d5f51fcdd17cd4d4f2c4d32242c05f..ed8a13ac4ab23ca65c6fcbd5e1ea072f90c60790 100644 (file)
@@ -517,7 +517,7 @@ static void __send_ipi_mask(const struct cpumask *mask, int vector)
                } else if (apic_id < min && max - apic_id < KVM_IPI_CLUSTER_SIZE) {
                        ipi_bitmap <<= min - apic_id;
                        min = apic_id;
-               } else if (apic_id < min + KVM_IPI_CLUSTER_SIZE) {
+               } else if (apic_id > min && apic_id < min + KVM_IPI_CLUSTER_SIZE) {
                        max = apic_id < max ? max : apic_id;
                } else {
                        ret = kvm_hypercall4(KVM_HC_SEND_IPI, (unsigned long)ipi_bitmap,
This page took 0.052737 seconds and 4 git commands to generate.