[Qemu-devel] [PATCH 5/5] qmp: create QMP implementation of loadvm command

2016-01-08 Thread Denis V. Lunev
Unfortunately load_vmstate has a return code (int) and this code is checked in the other places. Thus we could not just rename it to qmp_loadvm as returns void. Signed-off-by: Denis V. Lunev CC: Juan Quintela CC: Amit Shah CC: Markus Armbruster CC: Eric Blake --- migration/savevm.c | 10

[Qemu-devel] [PATCH 5/5] qmp: create QMP implementation of loadvm command

2016-01-08 Thread Denis V. Lunev
Unfortunately load_vmstate has a return code (int) and this code is checked in the other places. Thus we could not just rename it to qmp_loadvm as returns void. Signed-off-by: Denis V. Lunev CC: Juan Quintela CC: Amit Shah CC: Markus Armbruster CC: Eric Blake --- migration/savevm.c | 10

Re: [Qemu-devel] [PATCH 5/5] qmp: create QMP implementation of loadvm command

2015-12-23 Thread Eric Blake
On 12/04/2015 07:44 AM, Denis V. Lunev wrote: > Unfortunately load_vmstate has a return code (int) and this code is checked > in the other places. Thus we could not just rename it to qmp_loadvm as > returns void. > > Signed-off-by: Denis V. Lunev > CC: Juan Quintela > CC: Amit Shah > CC: Markus

[Qemu-devel] [PATCH 5/5] qmp: create QMP implementation of loadvm command

2015-12-04 Thread Denis V. Lunev
Unfortunately load_vmstate has a return code (int) and this code is checked in the other places. Thus we could not just rename it to qmp_loadvm as returns void. Signed-off-by: Denis V. Lunev CC: Juan Quintela CC: Amit Shah CC: Markus Armbruster CC: Eric Blake --- migration/savevm.c | 12

Re: [Qemu-devel] [PATCH 5/5] qmp: create QMP implementation of loadvm command

2015-12-01 Thread Denis V. Lunev
On 11/18/2015 02:41 PM, Juan Quintela wrote: "Denis V. Lunev" wrote: Signed-off-by: Denis V. Lunev CC: Juan Quintela CC: Amit Shah CC: Markus Armbruster CC: Eric Blake --- migration/savevm.c | 5 + qapi-schema.json | 13 + qmp-commands.hx| 23

Re: [Qemu-devel] [PATCH 5/5] qmp: create QMP implementation of loadvm command

2015-11-18 Thread Juan Quintela
"Denis V. Lunev" wrote: > Signed-off-by: Denis V. Lunev > CC: Juan Quintela > CC: Amit Shah > CC: Markus Armbruster > CC: Eric Blake > --- > migration/savevm.c | 5 + > qapi-schema.json | 13 + > qmp-commands.hx| 23 +++ > 3 files changed, 41 insert

[Qemu-devel] [PATCH 5/5] qmp: create QMP implementation of loadvm command

2015-11-16 Thread Denis V. Lunev
Signed-off-by: Denis V. Lunev CC: Juan Quintela CC: Amit Shah CC: Markus Armbruster CC: Eric Blake --- migration/savevm.c | 5 + qapi-schema.json | 13 + qmp-commands.hx| 23 +++ 3 files changed, 41 insertions(+) diff --git a/migration/savevm.c b/mi