From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60303) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y1vnu-0005xt-0M for qemu-devel@nongnu.org; Fri, 19 Dec 2014 06:33:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Y1vnn-0007nw-RJ for qemu-devel@nongnu.org; Fri, 19 Dec 2014 06:33:05 -0500 Received: from mx1.redhat.com ([209.132.183.28]:56392) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y1vnn-0007ni-Jg for qemu-devel@nongnu.org; Fri, 19 Dec 2014 06:32:59 -0500 Date: Fri, 19 Dec 2014 12:32:52 +0100 From: Igor Mammedov Message-ID: <20141219123252.7dc36ea5@nial.brq.redhat.com> In-Reply-To: <549408C8.70107@redhat.com> References: <20141219120340.3416948b@nial.brq.redhat.com> <549408C8.70107@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] broken backward migration due to commit 461a275 "parallel: adding vmstate for save/restore" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Paolo Bonzini Cc: dgilbert@redhat.com, qemu-devel@nongnu.org, Pavel.Dovgaluk@ispras.ru, quintela@redhat.com On Fri, 19 Dec 2014 12:15:20 +0100 Paolo Bonzini wrote: > > > On 19/12/2014 12:03, Igor Mammedov wrote: > > steps to reproduce: > > > > Current master source: > > qemu-system-x86_64 -monitor stdio -M pc-i440fx-2.1 > > (qemu) stop > > (qemu) migrate "exec:gzip -c > STATEFILE.gz" > > > > Target: > > qemu-system-x86_64-2.1 -monitor stdio -M pc-i440fx-2.1 -incoming "exec: gzip -c -d STATEFILE.gz" > > > > That's expected. Backwards migration is not supported by upstream, and > there's no equivalent of subsections for entire devices. > > Just use "-parallel none". ok There is one more commit that breaks it, this time with subsection 6c3bff0 "exec: Save CPUState::exception_index field" qemu: warning: error while loading state for instance 0x0 of device 'cpu_common' the same reproducer with -parallel none > > Paolo