]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
KVM: PPC: Book3S HV: Don't try to signal cpu -1
authorPaul Mackerras <paulus@ozlabs.org>
Tue, 20 Dec 2016 03:02:29 +0000 (14:02 +1100)
committerPaul Mackerras <paulus@ozlabs.org>
Thu, 26 Jan 2017 21:58:34 +0000 (08:58 +1100)
If the target vcpu for kvmppc_fast_vcpu_kick_hv() is not running on
any CPU, then we will have vcpu->arch.thread_cpu == -1, and as it
happens, kvmppc_fast_vcpu_kick_hv will call kvmppc_ipi_thread with
-1 as the cpu argument.  Although this is not meaningful, in the past,
before commit 1704a81ccebc ("KVM: PPC: Book3S HV: Use msgsnd for IPIs
to other cores on POWER9", 2016-11-18), it was harmless because CPU
-1 is not in the same core as any real CPU thread.  On a POWER9,
however, we don't do the "same core" check, so we were trying to
do a msgsnd to thread -1, which is invalid.  To avoid this, we add
a check to see that vcpu->arch.thread_cpu is >= 0 before calling
kvmppc_ipi_thread() with it.  Since vcpu->arch.thread_vcpu can change
asynchronously, we use READ_ONCE to ensure that the value we check is
the same value that we use as the argument to kvmppc_ipi_thread().

Fixes: 1704a81ccebc ("KVM: PPC: Book3S HV: Use msgsnd for IPIs to other cores on POWER9")
Signed-off-by: Paul Mackerras <paulus@ozlabs.org>
arch/powerpc/kvm/book3s_hv.c

index ec34e39471a78b3e60e2701f6a4e0bdf07b16de3..8d9cc07b1e9cbfa7cabce69f52a5b77146a2afd3 100644 (file)
@@ -182,7 +182,8 @@ static void kvmppc_fast_vcpu_kick_hv(struct kvm_vcpu *vcpu)
                ++vcpu->stat.halt_wakeup;
        }
 
-       if (kvmppc_ipi_thread(vcpu->arch.thread_cpu))
+       cpu = READ_ONCE(vcpu->arch.thread_cpu);
+       if (cpu >= 0 && kvmppc_ipi_thread(cpu))
                return;
 
        /* CPU points to the first thread of the core */