]> git.proxmox.com Git - mirror_qemu.git/commit
cpu: Move cpu state syncs up into cpu_dump_state()
authorJames Hogan <james.hogan@imgtec.com>
Tue, 27 Aug 2013 11:19:10 +0000 (12:19 +0100)
committerPaolo Bonzini <pbonzini@redhat.com>
Fri, 20 Sep 2013 10:37:52 +0000 (12:37 +0200)
commit97577fd4c31777780a22b77afa4590086ac962c7
treef564b8e5b47a84f846ef413e14e230ee67488304
parent3e469dbfe413c25d48321c3a19ddfae0727dc6e5
cpu: Move cpu state syncs up into cpu_dump_state()

The x86 and ppc targets call cpu_synchronize_state() from their
*_cpu_dump_state() callbacks to ensure that up to date state is dumped
when KVM is enabled (for example when a KVM internal error occurs).

Move this call up into the generic cpu_dump_state() function so that
other KVM targets (namely MIPS) can take advantage of it.

This requires kvm_cpu_synchronize_state() and cpu_synchronize_state() to
be moved out of the #ifdef NEED_CPU_H in <sysemu/kvm.h> so that they're
accessible to qom/cpu.c.

Signed-off-by: James Hogan <james.hogan@imgtec.com>
Cc: Andreas Färber <afaerber@suse.de>
Cc: Alexander Graf <agraf@suse.de>
Cc: Gleb Natapov <gleb@redhat.com>
Cc: qemu-ppc@nongnu.org
Cc: kvm@vger.kernel.org
Signed-off-by: Gleb Natapov <gleb@redhat.com>
include/sysemu/kvm.h
qom/cpu.c
target-i386/helper.c
target-ppc/translate.c