diff options
author | Marc Zyngier <maz@kernel.org> | 2024-08-20 14:17:57 +0100 |
---|---|---|
committer | Marc Zyngier <maz@kernel.org> | 2024-08-27 07:59:27 +0100 |
commit | 7d9c1ed6f4bfa8d5fcafad847ac64e2839a04301 (patch) | |
tree | 64205e23af54aff852e03df71d211f8b1ed84eae /arch/arm64/kvm/fpsimd.c | |
parent | d4db98791aa5316677a1da9bfa0788068c9863dc (diff) | |
download | lwn-7d9c1ed6f4bfa8d5fcafad847ac64e2839a04301.tar.gz lwn-7d9c1ed6f4bfa8d5fcafad847ac64e2839a04301.zip |
KVM: arm64: Move FPMR into the sysreg array
Just like SVCR, FPMR is currently stored at the wrong location.
Let's move it where it belongs.
Reviewed-by: Mark Brown <broonie@kernel.org>
Tested-by: Mark Brown <broonie@kernel.org>
Link: https://lore.kernel.org/r/20240820131802.3547589-4-maz@kernel.org
Signed-off-by: Marc Zyngier <maz@kernel.org>
Diffstat (limited to 'arch/arm64/kvm/fpsimd.c')
-rw-r--r-- | arch/arm64/kvm/fpsimd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/kvm/fpsimd.c b/arch/arm64/kvm/fpsimd.c index e6425414d301..4cb8ad5d69a8 100644 --- a/arch/arm64/kvm/fpsimd.c +++ b/arch/arm64/kvm/fpsimd.c @@ -135,7 +135,7 @@ void kvm_arch_vcpu_ctxsync_fp(struct kvm_vcpu *vcpu) fp_state.sve_vl = vcpu->arch.sve_max_vl; fp_state.sme_state = NULL; fp_state.svcr = &__vcpu_sys_reg(vcpu, SVCR); - fp_state.fpmr = &vcpu->arch.fpmr; + fp_state.fpmr = &__vcpu_sys_reg(vcpu, FPMR); fp_state.fp_type = &vcpu->arch.fp_type; if (vcpu_has_sve(vcpu)) |