]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
KVM: MIPS: Convert get/set_regs -> vcpu_load/put
authorJames Hogan <james.hogan@imgtec.com>
Sat, 12 Nov 2016 00:00:13 +0000 (00:00 +0000)
committerJames Hogan <james.hogan@imgtec.com>
Fri, 3 Feb 2017 15:20:44 +0000 (15:20 +0000)
Convert the get_regs() and set_regs() callbacks to vcpu_load() and
vcpu_put(), which provide a cpu argument and more closely match the
kvm_arch_vcpu_load() / kvm_arch_vcpu_put() that they are called by.

This is in preparation for moving ASID management into the
implementations.

Signed-off-by: James Hogan <james.hogan@imgtec.com>
Cc: Paolo Bonzini <pbonzini@redhat.com>
Cc: "Radim Krčmář" <rkrcmar@redhat.com>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: linux-mips@linux-mips.org
Cc: kvm@vger.kernel.org
arch/mips/include/asm/kvm_host.h
arch/mips/kvm/mmu.c
arch/mips/kvm/trap_emul.c

index 7cc53e44b42e00104ec6835dc7b7bfcf69c04bf5..1c70b5224151c742122e05c5eec7a0a043c23b6a 100644 (file)
@@ -539,8 +539,8 @@ struct kvm_mips_callbacks {
                           const struct kvm_one_reg *reg, s64 *v);
        int (*set_one_reg)(struct kvm_vcpu *vcpu,
                           const struct kvm_one_reg *reg, s64 v);
-       int (*vcpu_get_regs)(struct kvm_vcpu *vcpu);
-       int (*vcpu_set_regs)(struct kvm_vcpu *vcpu);
+       int (*vcpu_load)(struct kvm_vcpu *vcpu, int cpu);
+       int (*vcpu_put)(struct kvm_vcpu *vcpu, int cpu);
 };
 extern struct kvm_mips_callbacks *kvm_mips_callbacks;
 int kvm_mips_emulation_init(struct kvm_mips_callbacks **install_callbacks);
index e1698a66253bcf45d672f159441e12906c3cd6a5..ed46528611f4e87345fa5f48332f1ee8f464d23e 100644 (file)
@@ -294,7 +294,7 @@ void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
        }
 
        /* restore guest state to registers */
-       kvm_mips_callbacks->vcpu_set_regs(vcpu);
+       kvm_mips_callbacks->vcpu_load(vcpu, cpu);
 
        local_irq_restore(flags);
 
@@ -312,7 +312,7 @@ void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
        vcpu->arch.last_sched_cpu = cpu;
 
        /* save guest state in registers */
-       kvm_mips_callbacks->vcpu_get_regs(vcpu);
+       kvm_mips_callbacks->vcpu_put(vcpu, cpu);
 
        if (((cpu_context(cpu, current->mm) ^ asid_cache(cpu)) &
             asid_version_mask(cpu))) {
index 3b20441f2bebfb4516f580e6301f3e269e91465f..c0ee51465913ad6aa7414ab02edba9e4fa4d17bb 100644 (file)
@@ -633,15 +633,15 @@ static int kvm_trap_emul_set_one_reg(struct kvm_vcpu *vcpu,
        return ret;
 }
 
-static int kvm_trap_emul_vcpu_get_regs(struct kvm_vcpu *vcpu)
+static int kvm_trap_emul_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
 {
-       kvm_lose_fpu(vcpu);
-
        return 0;
 }
 
-static int kvm_trap_emul_vcpu_set_regs(struct kvm_vcpu *vcpu)
+static int kvm_trap_emul_vcpu_put(struct kvm_vcpu *vcpu, int cpu)
 {
+       kvm_lose_fpu(vcpu);
+
        return 0;
 }
 
@@ -675,8 +675,8 @@ static struct kvm_mips_callbacks kvm_trap_emul_callbacks = {
        .copy_reg_indices = kvm_trap_emul_copy_reg_indices,
        .get_one_reg = kvm_trap_emul_get_one_reg,
        .set_one_reg = kvm_trap_emul_set_one_reg,
-       .vcpu_get_regs = kvm_trap_emul_vcpu_get_regs,
-       .vcpu_set_regs = kvm_trap_emul_vcpu_set_regs,
+       .vcpu_load = kvm_trap_emul_vcpu_load,
+       .vcpu_put = kvm_trap_emul_vcpu_put,
 };
 
 int kvm_mips_emulation_init(struct kvm_mips_callbacks **install_callbacks)