|
@@ -429,7 +429,7 @@ int __hyp_text __kvm_vcpu_run_nvhe(struct kvm_vcpu *vcpu)
|
|
|
host_ctxt->__hyp_running_vcpu = vcpu;
|
|
|
guest_ctxt = &vcpu->arch.ctxt;
|
|
|
|
|
|
- __sysreg_save_host_state_nvhe(host_ctxt);
|
|
|
+ __sysreg_save_state_nvhe(host_ctxt);
|
|
|
|
|
|
__activate_traps(vcpu);
|
|
|
__activate_vm(kern_hyp_va(vcpu->kvm));
|
|
@@ -442,7 +442,7 @@ int __hyp_text __kvm_vcpu_run_nvhe(struct kvm_vcpu *vcpu)
|
|
|
* to erratum #852523 (Cortex-A57) or #853709 (Cortex-A72).
|
|
|
*/
|
|
|
__sysreg32_restore_state(vcpu);
|
|
|
- __sysreg_restore_guest_state_nvhe(guest_ctxt);
|
|
|
+ __sysreg_restore_state_nvhe(guest_ctxt);
|
|
|
__debug_switch_to_guest(vcpu);
|
|
|
|
|
|
do {
|
|
@@ -464,7 +464,7 @@ int __hyp_text __kvm_vcpu_run_nvhe(struct kvm_vcpu *vcpu)
|
|
|
|
|
|
fp_enabled = __fpsimd_enabled();
|
|
|
|
|
|
- __sysreg_save_guest_state_nvhe(guest_ctxt);
|
|
|
+ __sysreg_save_state_nvhe(guest_ctxt);
|
|
|
__sysreg32_save_state(vcpu);
|
|
|
__timer_disable_traps(vcpu);
|
|
|
__vgic_save_state(vcpu);
|
|
@@ -472,7 +472,7 @@ int __hyp_text __kvm_vcpu_run_nvhe(struct kvm_vcpu *vcpu)
|
|
|
__deactivate_traps(vcpu);
|
|
|
__deactivate_vm(vcpu);
|
|
|
|
|
|
- __sysreg_restore_host_state_nvhe(host_ctxt);
|
|
|
+ __sysreg_restore_state_nvhe(host_ctxt);
|
|
|
|
|
|
if (fp_enabled) {
|
|
|
__fpsimd_save_state(&guest_ctxt->gp_regs.fp_regs);
|
|
@@ -502,7 +502,7 @@ static void __hyp_text __hyp_call_panic_nvhe(u64 spsr, u64 elr, u64 par,
|
|
|
__timer_disable_traps(vcpu);
|
|
|
__deactivate_traps(vcpu);
|
|
|
__deactivate_vm(vcpu);
|
|
|
- __sysreg_restore_host_state_nvhe(__host_ctxt);
|
|
|
+ __sysreg_restore_state_nvhe(__host_ctxt);
|
|
|
}
|
|
|
|
|
|
/*
|