Re: [Qemu-devel] [PATCH V2] migration: expose qemu_announce_self() via qmp

2017-05-22 Thread Germano Veit Michel
gered by qemu at the end of migrations > >>> to update the network regarding the path to the guest l2addr. > >>> > >>> however it is also useful when there is a network change such as > >>> an active bond slave swap. Essentially, it's

Re: [Qemu-devel] [PATCH V2] migration: expose qemu_announce_self() via qmp

2017-05-04 Thread Germano Veit Michel
2:31 AM, Dr. David Alan Gilbert <dgilb...@redhat.com > wrote: > * Markus Armbruster (arm...@redhat.com) wrote: > > "Dr. David Alan Gilbert" <dgilb...@redhat.com> writes: > > > > > * Germano Veit Michel (germ...@redhat.com) wrote: > > >> qemu_anno

Re: [Qemu-devel] [PATCH V2] migration: expose qemu_announce_self() via qmp

2017-03-12 Thread Germano Veit Michel
On Fri, Mar 3, 2017 at 10:06 PM, Markus Armbruster wrote: > > Please drop this line. > >>> +# >>> +# Example: >>> +# >>> +# -> { "execute": "announce-self" } >>> +# <- { "return": {} } >>> +# >>> +# Since: 2.9 >>> +## >>> +{ 'command': 'announce-self' } >>> + > Hi Markus, Are

[Qemu-devel] [PATCH V2] migration: expose qemu_announce_self() via qmp

2017-02-20 Thread Germano Veit Michel
- the guest moves to a different point in the network topology. this exposes the function via qmp. Signed-off-by: Germano Veit Michel <germ...@redhat.com> --- include/migration/vmstate.h | 5 + migration/savevm.c | 30 +++--- qapi-schema.json

[Qemu-devel] [PATCH] migration: expose qemu_announce_self() via qmp

2017-01-16 Thread Germano Veit Michel
- the guest moves to a different point in the network topology. this exposes the function via qmp. Signed-off-by: Germano Veit Michel <germ...@redhat.com> --- migration/savevm.c | 5 + qapi-schema.json | 18 ++ 2 files changed, 23 insertions(+) diff --git a/migration/save