diff options
author | Alexey Kardashevskiy | 2013-07-18 21:32:54 +0200 |
---|---|---|
committer | Anthony Liguori | 2013-07-29 17:37:04 +0200 |
commit | a90db1584a00dc1d1439dc7729d99674b666b85e (patch) | |
tree | 6141d78c5b7ed1f21a98ccad141ecf083d6e3218 /target-ppc/translate_init.c | |
parent | Merge remote-tracking branch 'sstabellini/xen-130729' into staging (diff) | |
download | qemu-a90db1584a00dc1d1439dc7729d99674b666b85e.tar.gz qemu-a90db1584a00dc1d1439dc7729d99674b666b85e.tar.xz qemu-a90db1584a00dc1d1439dc7729d99674b666b85e.zip |
target-ppc: Convert ppc cpu savevm to VMStateDescription
The savevm code for the powerpc cpu emulation is currently based around
the old register_savevm() rather than register_vmstate() method. It's also
rather broken, missing some important state on some CPU models.
This patch completely rewrites the savevm for target-ppc, using the new
VMStateDescription approach. Exactly what needs to be saved in what
configurations has been more carefully examined, too. This introduces a
new version (5) of the cpu save format. The old load function is retained
to support version 4 images.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
Message-id: 1374175984-8930-2-git-send-email-aliguori@us.ibm.com
[aik: ppc cpu savevm convertion fixed to use PowerPCCPU instead of CPUPPCState]
Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'target-ppc/translate_init.c')
-rw-r--r-- | target-ppc/translate_init.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target-ppc/translate_init.c b/target-ppc/translate_init.c index 8215946e39..44069e6887 100644 --- a/target-ppc/translate_init.c +++ b/target-ppc/translate_init.c @@ -8462,6 +8462,7 @@ static void ppc_cpu_class_init(ObjectClass *oc, void *data) cc->gdb_write_register = ppc_cpu_gdb_write_register; #ifndef CONFIG_USER_ONLY cc->get_phys_page_debug = ppc_cpu_get_phys_page_debug; + cc->vmsd = &vmstate_ppc_cpu; #endif cc->gdb_num_core_regs = 71; |