From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56755) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZAFRD-00080q-5N for qemu-devel@nongnu.org; Wed, 01 Jul 2015 06:40:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZAFRC-0002SA-2m for qemu-devel@nongnu.org; Wed, 01 Jul 2015 06:40:19 -0400 Received: from mx1.redhat.com ([209.132.183.28]:43097) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZAFRB-0002S2-MQ for qemu-devel@nongnu.org; Wed, 01 Jul 2015 06:40:17 -0400 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) by mx1.redhat.com (Postfix) with ESMTPS id 56055B82B8 for ; Wed, 1 Jul 2015 10:40:17 +0000 (UTC) From: Juan Quintela Date: Wed, 1 Jul 2015 12:39:38 +0200 Message-Id: <1435747190-18017-15-git-send-email-quintela@redhat.com> In-Reply-To: <1435747190-18017-1-git-send-email-quintela@redhat.com> References: <1435747190-18017-1-git-send-email-quintela@redhat.com> Subject: [Qemu-devel] [PULL 14/26] Fix older machine type compatibility on power with section footers List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: amit.shah@redhat.com, "Dr. David Alan Gilbert" From: "Dr. David Alan Gilbert" I forgot to add compatibility for Power when adding section footers. Signed-off-by: Dr. David Alan Gilbert Fixes: 37fb569c0198cba58e3e Signed-off-by: Juan Quintela --- hw/ppc/spapr.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c index f174e5a..01f8da8 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) -- 2.4.3