KVM: arm64: Remove unused __sve_save_state
authorMarc Zyngier <maz@kernel.org>
Mon, 22 Nov 2021 15:59:23 +0000 (15:59 +0000)
committerMarc Zyngier <maz@kernel.org>
Mon, 22 Nov 2021 16:01:39 +0000 (16:01 +0000)
Now that we don't have any users left for __sve_save_state, remove
it altogether. Should we ever need to save the SVE state from the
hypervisor again, we can always re-introduce it.

Suggested-by: Zenghui Yu <yuzenghui@huawei.com>
Signed-off-by: Marc Zyngier <maz@kernel.org>
arch/arm64/include/asm/kvm_hyp.h
arch/arm64/kvm/hyp/fpsimd.S

index 5afd14ab15b9f778c259877d0ef6031e2d82beca..462882f356c775d1e364dce108b7c6769ed0a8f4 100644 (file)
@@ -90,7 +90,6 @@ void __debug_restore_host_buffers_nvhe(struct kvm_vcpu *vcpu);
 
 void __fpsimd_save_state(struct user_fpsimd_state *fp_regs);
 void __fpsimd_restore_state(struct user_fpsimd_state *fp_regs);
-void __sve_save_state(void *sve_pffr, u32 *fpsr);
 void __sve_restore_state(void *sve_pffr, u32 *fpsr);
 
 #ifndef __KVM_NVHE_HYPERVISOR__
index e950875e31cee4df58d041519b7584356463c91b..61e6f3ba7b7d17b5d62e3eedf834cdfc1494417d 100644 (file)
@@ -25,9 +25,3 @@ SYM_FUNC_START(__sve_restore_state)
        sve_load 0, x1, x2, 3
        ret
 SYM_FUNC_END(__sve_restore_state)
-
-SYM_FUNC_START(__sve_save_state)
-       mov     x2, #1
-       sve_save 0, x1, x2, 3
-       ret
-SYM_FUNC_END(__sve_save_state)