From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dave.Martin@arm.com (Dave Martin) Date: Mon, 9 Apr 2018 11:23:19 +0100 Subject: [RFC PATCH v2 3/3] KVM: arm64: Optimise FPSIMD handling to reduce guest/host thrashing In-Reply-To: <20180409094818.GB10904@cbox> References: <1523026864-15413-1-git-send-email-Dave.Martin@arm.com> <1523026864-15413-4-git-send-email-Dave.Martin@arm.com> <20180409094818.GB10904@cbox> Message-ID: <20180409102317.GT16308@e103592.cambridge.arm.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On Mon, Apr 09, 2018 at 11:48:18AM +0200, Christoffer Dall wrote: [...] > > diff --git a/arch/arm64/kvm/hyp/switch.c b/arch/arm64/kvm/hyp/switch.c > > index 8605e04..797b259 100644 > > --- a/arch/arm64/kvm/hyp/switch.c > > +++ b/arch/arm64/kvm/hyp/switch.c > > @@ -27,6 +27,7 @@ > > #include > > #include > > #include > > +#include > > > > static bool __hyp_text __fpsimd_enabled_nvhe(void) > > { > > @@ -47,24 +48,40 @@ bool __hyp_text __fpsimd_enabled(void) > > return __fpsimd_is_enabled()(); > > } > > > > -static void __hyp_text __activate_traps_vhe(void) > > +static bool update_fp_enabled(struct kvm_vcpu *vcpu) > > +{ > > + if (vcpu->arch.host_thread_info->flags & _TIF_FOREIGN_FPSTATE) { > > + vcpu->arch.host_fpsimd_state = NULL; > > I can't see where host_fpsimd_state gets set to anything else than NULL, > what am I missing? It's set in kvm_arch_vcpu_load_fp(). Once we enter the run loop the pointer can only be changed to NULL, because the host state only needs to be saved once. Cheers ---Dave