diff options
author | Jan Kiszka <jan.kiszka@web.de> | 2009-06-27 09:24:58 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-06-29 14:18:07 -0500 |
commit | 8d2ba1fb9c8e7006e10d71fa51a020977f14c8b0 (patch) | |
tree | fe229d578c3380d6b9e874337f06413a9a1160af /kvm-all.c | |
parent | e9283f8b88eb6054ac032f3d9b773e80d842c0cf (diff) | |
download | qemu-8d2ba1fb9c8e7006e10d71fa51a020977f14c8b0.tar.gz qemu-8d2ba1fb9c8e7006e10d71fa51a020977f14c8b0.tar.bz2 qemu-8d2ba1fb9c8e7006e10d71fa51a020977f14c8b0.zip |
kvm: Rework VCPU synchronization
During startup and after reset we have to synchronize user space to the
in-kernel KVM state. Namely, we need to transfer the VCPU registers when
they change due to VCPU as well as APIC reset.
This patch refactors the required hooks so that kvm_init_vcpu registers
its own per-VCPU reset handler and adds a cpu_synchronize_state to the
APIC reset. That way we no longer depend on the new reset order (and can
drop this disliked interface again) and we can even drop a KVM hook in
main().
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'kvm-all.c')
-rw-r--r-- | kvm-all.c | 36 |
1 files changed, 13 insertions, 23 deletions
@@ -143,6 +143,15 @@ static int kvm_set_user_memory_region(KVMState *s, KVMSlot *slot) return kvm_vm_ioctl(s, KVM_SET_USER_MEMORY_REGION, &mem); } +static void kvm_reset_vcpu(void *opaque) +{ + CPUState *env = opaque; + + if (kvm_arch_put_registers(env)) { + fprintf(stderr, "Fatal: kvm vcpu reset failed\n"); + abort(); + } +} int kvm_init_vcpu(CPUState *env) { @@ -176,7 +185,10 @@ int kvm_init_vcpu(CPUState *env) } ret = kvm_arch_init_vcpu(env); - + if (ret == 0) { + qemu_register_reset(kvm_reset_vcpu, 0, env); + ret = kvm_arch_put_registers(env); + } err: return ret; } @@ -201,21 +213,6 @@ int kvm_get_mp_state(CPUState *env) return 0; } -int kvm_sync_vcpus(void) -{ - CPUState *env; - - for (env = first_cpu; env != NULL; env = env->next_cpu) { - int ret; - - ret = kvm_arch_put_registers(env); - if (ret) - return ret; - } - - return 0; -} - /* * dirty pages logging control */ @@ -397,11 +394,6 @@ int kvm_check_extension(KVMState *s, unsigned int extension) return ret; } -static void kvm_reset_vcpus(void *opaque) -{ - kvm_sync_vcpus(); -} - int kvm_init(int smp_cpus) { static const char upgrade_note[] = @@ -492,8 +484,6 @@ int kvm_init(int smp_cpus) if (ret < 0) goto err; - qemu_register_reset(kvm_reset_vcpus, INT_MAX, NULL); - kvm_state = s; return 0; |