KVM: s390: introduce kvm_s390_fpu_(store|load)
[sfrench/cifs-2.6.git] / arch / s390 / kvm / kvm-s390.c
index 8c222b0dfbf2e7e68a953fd95fbee3a92cf84ae1..6500f80a70864f840ab50bfdb7e64df39bd2b4ce 100644 (file)
@@ -4949,11 +4949,7 @@ static void sync_regs(struct kvm_vcpu *vcpu)
        }
        save_access_regs(vcpu->arch.host_acrs);
        restore_access_regs(vcpu->run->s.regs.acrs);
-       fpu_lfpc_safe(&vcpu->run->s.regs.fpc);
-       if (cpu_has_vx())
-               load_vx_regs((__vector128 *)&vcpu->run->s.regs.vrs);
-       else
-               load_fp_regs((freg_t *)&vcpu->run->s.regs.fprs);
+       kvm_s390_fpu_load(vcpu->run);
        /* Sync fmt2 only data */
        if (likely(!kvm_s390_pv_cpu_is_protected(vcpu))) {
                sync_regs_fmt2(vcpu);
@@ -5014,11 +5010,7 @@ static void store_regs(struct kvm_vcpu *vcpu)
        kvm_run->s.regs.pfc = vcpu->arch.pfault_compare;
        save_access_regs(vcpu->run->s.regs.acrs);
        restore_access_regs(vcpu->arch.host_acrs);
-       fpu_stfpc(&vcpu->run->s.regs.fpc);
-       if (cpu_has_vx())
-               save_vx_regs((__vector128 *)&vcpu->run->s.regs.vrs);
-       else
-               save_fp_regs((freg_t *)&vcpu->run->s.regs.fprs);
+       kvm_s390_fpu_store(vcpu->run);
        if (likely(!kvm_s390_pv_cpu_is_protected(vcpu)))
                store_regs_fmt2(vcpu);
 }
@@ -5167,11 +5159,7 @@ int kvm_s390_vcpu_store_status(struct kvm_vcpu *vcpu, unsigned long addr)
         * switch in the run ioctl. Let's update our copies before we save
         * it into the save area
         */
-       fpu_stfpc(&vcpu->run->s.regs.fpc);
-       if (cpu_has_vx())
-               save_vx_regs((__vector128 *)&vcpu->run->s.regs.vrs);
-       else
-               save_fp_regs((freg_t *)&vcpu->run->s.regs.fprs);
+       kvm_s390_fpu_store(vcpu->run);
        save_access_regs(vcpu->run->s.regs.acrs);
 
        return kvm_s390_store_status_unloaded(vcpu, addr);