KVM: arm64: Have kvm_psci_vcpu_on() use WRITE_ONCE() to update mp_state
authorReiji Watanabe <reijiw@google.com>
Wed, 19 Apr 2023 02:18:52 +0000 (19:18 -0700)
committerMarc Zyngier <maz@kernel.org>
Thu, 20 Apr 2023 08:06:20 +0000 (09:06 +0100)
commita189884bdc9238aeba941c50f02e25eb584fafed
tree4e5c64a8c0724b7584928a45c34241dcab0d2c0f
parent4ff910be01c0ca28c2ea8b354dd47a3a17524489
KVM: arm64: Have kvm_psci_vcpu_on() use WRITE_ONCE() to update mp_state

All accessors of kvm_vcpu_arch::mp_state should be {READ,WRITE}_ONCE(),
since readers of the mp_state don't acquire the mp_state_lock.
Nonetheless, kvm_psci_vcpu_on() updates the mp_state without using
WRITE_ONCE(). So, fix the code to update the mp_state using WRITE_ONCE.

Signed-off-by: Reiji Watanabe <reijiw@google.com>
Signed-off-by: Marc Zyngier <maz@kernel.org>
Link: https://lore.kernel.org/r/20230419021852.2981107-3-reijiw@google.com
arch/arm64/kvm/psci.c