Re: [PATCH v4] migration: Support gtree migration

2019-10-11 Thread Auger Eric
Hi Juan, On 10/11/19 12:18 PM, Juan Quintela wrote: > Eric Auger wrote: >> Introduce support for GTree migration. A custom save/restore >> is implemented. Each item is made of a key and a data. >> >> If the key is a pointer to an object, 2 VMSDs are passed into >> the GTree VMStateField. >> >>

Re: [PATCH v4] migration: Support gtree migration

2019-10-11 Thread Juan Quintela
Eric Auger wrote: > Introduce support for GTree migration. A custom save/restore > is implemented. Each item is made of a key and a data. > > If the key is a pointer to an object, 2 VMSDs are passed into > the GTree VMStateField. > > When putting the items, the tree is traversed in sorted order

Sphinx UnpicklingError (was Re: [Patchew-devel] Fwd: Re: [PATCH v4] migration: Support gtree migration)

2019-10-11 Thread Paolo Bonzini
Regards > > Eric > > > Forwarded Message ---- > Subject: Re: [PATCH v4] migration: Support gtree migration > Date: Fri, 11 Oct 2019 07:19:29 +0200 > From: Auger Eric > To: qemu-devel@nongnu.org, no-re...@patchew.org > CC: quint...@redhat.com, pet.

Re: [PATCH v4] migration: Support gtree migration

2019-10-10 Thread Peter Xu
On Thu, Oct 10, 2019 at 10:52:42PM +0200, Eric Auger wrote: > Introduce support for GTree migration. A custom save/restore > is implemented. Each item is made of a key and a data. > > If the key is a pointer to an object, 2 VMSDs are passed into > the GTree VMStateField. > > When putting the

Re: [PATCH v4] migration: Support gtree migration

2019-10-10 Thread Auger Eric
Hi, On 10/11/19 1:51 AM, no-re...@patchew.org wrote: > Patchew URL: > https://patchew.org/QEMU/20191010205242.711-1-eric.au...@redhat.com/ > > > > Hi, > > This series failed the docker-mingw@fedora build test. Please find the > testing commands and > their output below. If you have Docker

Re: [PATCH v4] migration: Support gtree migration

2019-10-10 Thread no-reply
Patchew URL: https://patchew.org/QEMU/20191010205242.711-1-eric.au...@redhat.com/ Hi, This series failed the docker-mingw@fedora build test. Please find the testing commands and their output below. If you have Docker installed, you can probably reproduce it locally. === TEST SCRIPT BEGIN

[PATCH v4] migration: Support gtree migration

2019-10-10 Thread Eric Auger
Introduce support for GTree migration. A custom save/restore is implemented. Each item is made of a key and a data. If the key is a pointer to an object, 2 VMSDs are passed into the GTree VMStateField. When putting the items, the tree is traversed in sorted order by g_tree_foreach. On the get()