This API call is supposed to change maximum tolerable downtime for live
migrations.
Jiri Denemark (5):
Internal driver API for virDomainMigrateSetDowntime
Public virDomainMigrateSetDowntime API
Implement virDomainMigrateSetDowntime in remote driver
Wire protocol and dispatcher for virDomainMigrateSetDowntime
Implement virDomainMigrateSetDowntime in qemu driver
daemon/remote.c | 29 ++++++++++
daemon/remote_dispatch_args.h | 1 +
daemon/remote_dispatch_prototypes.h | 8 +++
daemon/remote_dispatch_table.h | 5 ++
include/libvirt/libvirt.h.in | 3 +
src/driver.h | 5 ++
src/esx/esx_driver.c | 1 +
src/libvirt.c | 46 ++++++++++++++++
src/libvirt_public.syms | 5 ++
src/lxc/lxc_driver.c | 1 +
src/opennebula/one_driver.c | 1 +
src/openvz/openvz_driver.c | 1 +
src/phyp/phyp_driver.c | 1 +
src/qemu/qemu_driver.c | 47 +++++++++++++++++
src/qemu/qemu_monitor.c | 15 +++++
src/qemu/qemu_monitor.h | 3 +
src/qemu/qemu_monitor_json.c | 29 ++++++++++
src/qemu/qemu_monitor_json.h | 3 +
src/qemu/qemu_monitor_text.c | 27 ++++++++++
src/qemu/qemu_monitor_text.h | 3 +
src/remote/remote_driver.c | 27 ++++++++++
src/remote/remote_protocol.c | 11 ++++
src/remote/remote_protocol.h | 97 +++++++++++++++++++----------------
src/remote/remote_protocol.x | 9 +++-
src/test/test_driver.c | 1 +
src/uml/uml_driver.c | 1 +
src/vbox/vbox_tmpl.c | 1 +
src/xen/xen_driver.c | 1 +
src/xenapi/xenapi_driver.c | 1 +
29 files changed, 338 insertions(+), 45 deletions(-)