[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] libxl/libxl_qmp.c: Update COLO query replication status API
commit 7c2c1763aa6b63699dbb0c877f8b11aaa679cf3a Author: Zhang Chen <zhangchen.fnst@xxxxxxxxxxxxxx> AuthorDate: Fri Mar 17 16:42:32 2017 +0800 Commit: Wei Liu <wei.liu2@xxxxxxxxxx> CommitDate: Mon Mar 20 15:27:53 2017 +0000 libxl/libxl_qmp.c: Update COLO query replication status API The QEMU community has asked us to change QMP command xen-get-replication-error to query-xen-replication-status. Modify Xen side to use the new name. Signed-off-by: Zhang Chen <zhangchen.fnst@xxxxxxxxxxxxxx> Acked-by: Wei Liu <wei.liu2@xxxxxxxxxx> --- tools/libxl/libxl_colo_restore.c | 2 +- tools/libxl/libxl_colo_save.c | 3 ++- tools/libxl/libxl_internal.h | 2 +- tools/libxl/libxl_qmp.c | 4 ++-- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/tools/libxl/libxl_colo_restore.c b/tools/libxl/libxl_colo_restore.c index 7178ae9..0c535bd 100644 --- a/tools/libxl/libxl_colo_restore.c +++ b/tools/libxl/libxl_colo_restore.c @@ -986,7 +986,7 @@ static void colo_suspend_vm_done(libxl__egc *egc, crcs->status = LIBXL_COLO_SUSPENDED; - if (libxl__qmp_get_replication_error(gc, crs->domid)) { + if (libxl__qmp_query_xen_replication_status(gc, crs->domid)) { LOGD(ERROR, crs->domid, "replication error occurs when secondary vm is running"); goto out; } diff --git a/tools/libxl/libxl_colo_save.c b/tools/libxl/libxl_colo_save.c index eabc04c..f687d5a 100644 --- a/tools/libxl/libxl_colo_save.c +++ b/tools/libxl/libxl_colo_save.c @@ -345,7 +345,8 @@ static void colo_read_svm_suspended_done(libxl__egc *egc, goto out; } - if (!css->paused && libxl__qmp_get_replication_error(gc, dss->domid)) { + if (!css->paused && + libxl__qmp_query_xen_replication_status(gc, dss->domid)) { LOGD(ERROR, dss->domid, "replication error occurs when primary vm is running"); goto out; diff --git a/tools/libxl/libxl_internal.h b/tools/libxl/libxl_internal.h index 9fc05e7..25cb08a 100644 --- a/tools/libxl/libxl_internal.h +++ b/tools/libxl/libxl_internal.h @@ -1829,7 +1829,7 @@ _hidden int libxl__qmp_nbd_server_add(libxl__gc *gc, int domid, _hidden int libxl__qmp_start_replication(libxl__gc *gc, int domid, bool primary); /* Get replication error that occurs when the vm is running */ -_hidden int libxl__qmp_get_replication_error(libxl__gc *gc, int domid); +_hidden int libxl__qmp_query_xen_replication_status(libxl__gc *gc, int domid); /* Do checkpoint */ _hidden int libxl__qmp_colo_do_checkpoint(libxl__gc *gc, int domid); /* Stop replication */ diff --git a/tools/libxl/libxl_qmp.c b/tools/libxl/libxl_qmp.c index eef7722..eab993a 100644 --- a/tools/libxl/libxl_qmp.c +++ b/tools/libxl/libxl_qmp.c @@ -1079,9 +1079,9 @@ int libxl__qmp_start_replication(libxl__gc *gc, int domid, bool primary) return qmp_run_command(gc, domid, "xen-set-replication", args, NULL, NULL); } -int libxl__qmp_get_replication_error(libxl__gc *gc, int domid) +int libxl__qmp_query_xen_replication_status(libxl__gc *gc, int domid) { - return qmp_run_command(gc, domid, "xen-get-replication-error", NULL, + return qmp_run_command(gc, domid, "query-xen-replication-status", NULL, NULL, NULL); } -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |