Re: [Qemu-devel] [PATCH 3/3] Add dbus-vmstate object

2019-07-10 Thread Daniel P . Berrangé
On Wed, Jul 10, 2019 at 08:14:03AM +0200, Paolo Bonzini wrote: > On 08/07/19 09:24, Marc-André Lureau wrote: > > + > > +dstaddr = g_strsplit(g_test_dbus_get_bus_address(dstbus), ",", 2); > > +dst_qemu_args = > > +g_strdup_printf("-object dbus-vmstate,id=dv,addr=%s -incoming %s", > >

Re: [Qemu-devel] [PATCH 3/3] Add dbus-vmstate object

2019-07-09 Thread Paolo Bonzini
On 08/07/19 09:24, Marc-André Lureau wrote: > + > +dstaddr = g_strsplit(g_test_dbus_get_bus_address(dstbus), ",", 2); > +dst_qemu_args = > +g_strdup_printf("-object dbus-vmstate,id=dv,addr=%s -incoming %s", > +dstaddr[0], uri); > + Stupid question: what does

Re: [Qemu-devel] [PATCH 3/3] Add dbus-vmstate object

2019-07-08 Thread Eric Blake
On 7/8/19 3:41 AM, Juan Quintela wrote: > Marc-André Lureau wrote: >> When instanciated, this object will connect to the given D-Bus >> bus. During migration, it will take the data from org.qemu.VMState1 >> instances. >> >> See documentation for further details. >> >> Signed-off-by: Marc-André Lur

Re: [Qemu-devel] [PATCH 3/3] Add dbus-vmstate object

2019-07-08 Thread Juan Quintela
Marc-André Lureau wrote: > When instanciated, this object will connect to the given D-Bus > bus. During migration, it will take the data from org.qemu.VMState1 > instances. > > See documentation for further details. > > Signed-off-by: Marc-André Lureau > diff --git a/backends/Makefile.objs b/ba