diff options
author | Dr. David Alan Gilbert <dgilbert@redhat.com> | 2015-06-12 18:37:52 +0100 |
---|---|---|
committer | Juan Quintela <quintela@redhat.com> | 2015-07-07 14:54:50 +0200 |
commit | ff14e817f6c5f110b77e22185b256a17a96aa881 (patch) | |
tree | 22c77bb6295c0fb49b9e5d48c51e5324aa7fd82a /hw/ppc | |
parent | ef4b722d19cab845eaa0d1f912018b09a9d8288b (diff) |
Fix older machine type compatibility on power with section footers
I forgot to add compatibility for Power when adding section footers.
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Fixes: 37fb569c0198cba58e3e
Signed-off-by: Juan Quintela <quintela@redhat.com>
Diffstat (limited to 'hw/ppc')
-rw-r--r-- | hw/ppc/spapr.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c index f174e5a0f3..01f8da8f3c 100644 --- a/hw/ppc/spapr.c +++ b/hw/ppc/spapr.c @@ -34,6 +34,7 @@ #include "sysemu/cpus.h" #include "sysemu/kvm.h" #include "kvm_ppc.h" +#include "migration/migration.h" #include "mmu-hash64.h" #include "qom/cpu.h" @@ -1851,6 +1852,7 @@ static const TypeInfo spapr_machine_info = { static void spapr_compat_2_3(Object *obj) { + savevm_skip_section_footers(); } static void spapr_compat_2_2(Object *obj) |