Re: [Qemu-devel] [PATCH 1/5] migration: split hmp_savevm to do_savevm and hmp_savevm wrapper

2016-01-08 Thread Eric Blake
On 01/08/2016 09:40 AM, Denis V. Lunev wrote: Markus' series to add a prefixing notation would be better to use here (although I didn't check if he caught this one in that series already): https://lists.gnu.org/archive/html/qemu-devel/2015-12/msg03495.html >>> this series is not

Re: [Qemu-devel] [PATCH 1/5] migration: split hmp_savevm to do_savevm and hmp_savevm wrapper

2016-01-08 Thread Denis V. Lunev
On 01/08/2016 08:54 PM, Eric Blake wrote: On 01/08/2016 09:40 AM, Denis V. Lunev wrote: Markus' series to add a prefixing notation would be better to use here (although I didn't check if he caught this one in that series already):

Re: [Qemu-devel] [PATCH 1/5] migration: split hmp_savevm to do_savevm and hmp_savevm wrapper

2016-01-08 Thread Denis V. Lunev
On 12/24/2015 12:27 AM, Eric Blake wrote: On 12/04/2015 07:44 AM, Denis V. Lunev wrote: This would be useful in the next step when QMP version of this call will be introduced. Signed-off-by: Denis V. Lunev Reviewed-by: Juan Quintela CC: Amit Shah

Re: [Qemu-devel] [PATCH 1/5] migration: split hmp_savevm to do_savevm and hmp_savevm wrapper

2016-01-08 Thread Denis V. Lunev
On 01/08/2016 07:14 PM, Eric Blake wrote: On 01/08/2016 04:27 AM, Denis V. Lunev wrote: /* Delete old snapshots of the same name */ if (name && bdrv_all_delete_snapshot(name, , _err) < 0) { -monitor_printf(mon, - "Error while deleting snapshot on

Re: [Qemu-devel] [PATCH 1/5] migration: split hmp_savevm to do_savevm and hmp_savevm wrapper

2016-01-08 Thread Eric Blake
On 01/08/2016 04:27 AM, Denis V. Lunev wrote: >>> /* Delete old snapshots of the same name */ >>> if (name && bdrv_all_delete_snapshot(name, , _err) < >>> 0) { >>> -monitor_printf(mon, >>> - "Error while deleting snapshot on device >>> '%s': %s\n", >>>

Re: [Qemu-devel] [PATCH 1/5] migration: split hmp_savevm to do_savevm and hmp_savevm wrapper

2015-12-23 Thread Eric Blake
On 12/04/2015 07:44 AM, Denis V. Lunev wrote: > This would be useful in the next step when QMP version of this call will > be introduced. > > Signed-off-by: Denis V. Lunev > Reviewed-by: Juan Quintela > CC: Amit Shah > CC: Markus

[Qemu-devel] [PATCH 1/5] migration: split hmp_savevm to do_savevm and hmp_savevm wrapper

2015-12-04 Thread Denis V. Lunev
This would be useful in the next step when QMP version of this call will be introduced. Signed-off-by: Denis V. Lunev Reviewed-by: Juan Quintela CC: Amit Shah CC: Markus Armbruster CC: Eric Blake

Re: [Qemu-devel] [PATCH 1/5] migration: split hmp_savevm to do_savevm and hmp_savevm wrapper

2015-11-18 Thread Juan Quintela
"Denis V. Lunev" wrote: > This would be useful in the next step when QMP version of this call will > be introduced. > > Signed-off-by: Denis V. Lunev > CC: Juan Quintela > CC: Amit Shah > CC: Markus Armbruster

Re: [Qemu-devel] [PATCH 1/5] migration: split hmp_savevm to do_savevm and hmp_savevm wrapper

2015-11-17 Thread Markus Armbruster
"Denis V. Lunev" writes: > This would be useful in the next step when QMP version of this call will > be introduced. > > Signed-off-by: Denis V. Lunev > CC: Juan Quintela > CC: Amit Shah > CC: Markus Armbruster

[Qemu-devel] [PATCH 1/5] migration: split hmp_savevm to do_savevm and hmp_savevm wrapper

2015-11-16 Thread Denis V. Lunev
This would be useful in the next step when QMP version of this call will be introduced. Signed-off-by: Denis V. Lunev CC: Juan Quintela CC: Amit Shah CC: Markus Armbruster CC: Eric Blake ---