From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36267) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aTVdh-0003uj-Kq for qemu-devel@nongnu.org; Wed, 10 Feb 2016 09:21:11 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aTVdf-0005Sr-3b for qemu-devel@nongnu.org; Wed, 10 Feb 2016 09:21:05 -0500 Received: from e06smtp17.uk.ibm.com ([195.75.94.113]:57521) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aTVde-0005PZ-PQ for qemu-devel@nongnu.org; Wed, 10 Feb 2016 09:21:03 -0500 Received: from localhost by e06smtp17.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Wed, 10 Feb 2016 14:21:00 -0000 Date: Wed, 10 Feb 2016 15:20:50 +0100 From: Greg Kurz Message-ID: <20160210152050.2bcfeeda@bahia.huguette.org> In-Reply-To: <20160208155947.11480.87951.stgit@bahia.huguette.org> References: <20160208155947.11480.87951.stgit@bahia.huguette.org> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [Qemu-ppc] [PATCH] spapr: skip configuration section during migration of older machines List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: David Gibson Cc: Juan Quintela , qemu-ppc@nongnu.org, qemu-devel@nongnu.org, "Dr. David Alan Gilbert" , qemu-stable@nongnu.org Cc'ing Dave and Juan since this is migration stuff. On Mon, 08 Feb 2016 16:59:47 +0100 Greg Kurz wrote: > Since QEMU 2.4, we have a configuration section in the migration stream. > This must be skipped for older machines, like it is already done for x86. > > Fixes: 61964c23e5ddd5a33f15699e45ce126f879e3e33 > Cc: qemu-stable@nongnu.org > Signed-off-by: Greg Kurz > --- > hw/ppc/spapr.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c > index 5bd8fd3ef842..bca7cb8a5d27 100644 > --- a/hw/ppc/spapr.c > +++ b/hw/ppc/spapr.c > @@ -2446,6 +2446,7 @@ static void spapr_machine_2_3_instance_options(MachineState *machine) > spapr_machine_2_4_instance_options(machine); > savevm_skip_section_footers(); > global_state_set_optional(); > + savevm_skip_configuration(); > } > > static void spapr_machine_2_3_class_options(MachineClass *mc) > >