summaryrefslogtreecommitdiff
path: root/kvm.h
diff options
context:
space:
mode:
authorJan Kiszka <jan.kiszka@web.de>2009-06-27 09:24:58 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2009-06-29 14:18:07 -0500
commit7e7ebc7909e78fc724b686e71fad243ef13acd3f (patch)
treefe229d578c3380d6b9e874337f06413a9a1160af /kvm.h
parentb8093c6f08371cbe58c86157cd837448a9c78027 (diff)
downloadqemu-7e7ebc7909e78fc724b686e71fad243ef13acd3f.tar.gz
qemu-7e7ebc7909e78fc724b686e71fad243ef13acd3f.tar.bz2
qemu-7e7ebc7909e78fc724b686e71fad243ef13acd3f.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.h')
-rw-r--r--kvm.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/kvm.h b/kvm.h
index 560aef3872..96b4d72609 100644
--- a/kvm.h
+++ b/kvm.h
@@ -32,7 +32,6 @@ struct kvm_run;
int kvm_init(int smp_cpus);
int kvm_init_vcpu(CPUState *env);
-int kvm_sync_vcpus(void);
int kvm_cpu_exec(CPUState *env);