[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] libxl_qmp: Store advertised QEMU version in libxl__ev_qmp
commit fdbe3394bb94048a5996795ef897f363fc0c0f68 Author: Anthony PERARD <anthony.perard@xxxxxxxxxx> AuthorDate: Tue Jul 24 18:26:33 2018 +0100 Commit: Wei Liu <wei.liu2@xxxxxxxxxx> CommitDate: Fri Jan 11 14:57:52 2019 +0000 libxl_qmp: Store advertised QEMU version in libxl__ev_qmp This will be used in a later patch. Signed-off-by: Anthony PERARD <anthony.perard@xxxxxxxxxx> Acked-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> --- tools/libxl/libxl_internal.h | 8 ++++++++ tools/libxl/libxl_qmp.c | 25 +++++++++++++++++++++++++ 2 files changed, 33 insertions(+) diff --git a/tools/libxl/libxl_internal.h b/tools/libxl/libxl_internal.h index f30c106fbb..6bc520864f 100644 --- a/tools/libxl/libxl_internal.h +++ b/tools/libxl/libxl_internal.h @@ -439,6 +439,14 @@ struct libxl__ev_qmp { libxl__ev_qmp_callback *callback; int payload_fd; /* set to send a fd with the command, -1 otherwise */ + /* read-only when Connected + * and not to be accessed by the caller otherwise */ + struct { + int major; + int minor; + int micro; + } qemu_version; + /* * remaining fields are private to libxl_ev_qmp_* */ diff --git a/tools/libxl/libxl_qmp.c b/tools/libxl/libxl_qmp.c index 4e21a504db..6fe27c239f 100644 --- a/tools/libxl/libxl_qmp.c +++ b/tools/libxl/libxl_qmp.c @@ -1829,6 +1829,27 @@ static int qmp_ev_handle_message(libxl__egc *egc, return ERROR_PROTOCOL_ERROR_QMP; } + /* + * Store advertised QEMU version + * { "QMP": { "version": { + * "qemu": { "major": int, "minor": int, "micro": int } } } } + */ + o = libxl__json_map_get("QMP", resp, JSON_MAP); + o = libxl__json_map_get("version", o, JSON_MAP); + o = libxl__json_map_get("qemu", o, JSON_MAP); +#define GRAB_VERSION(level) do { \ + ev->qemu_version.level = libxl__json_object_get_integer( \ + libxl__json_map_get(#level, o, JSON_INTEGER)); \ + } while (0) + GRAB_VERSION(major); + GRAB_VERSION(minor); + GRAB_VERSION(micro); +#undef GRAB_VERSION + LOGD(DEBUG, ev->domid, "QEMU version: %d.%d.%d", + ev->qemu_version.major, + ev->qemu_version.minor, + ev->qemu_version.micro); + /* Prepare next message to send */ assert(!ev->tx_buf); ev->id = ev->next_id++; @@ -1991,6 +2012,10 @@ void libxl__ev_qmp_init(libxl__ev_qmp *ev) ev->msg = NULL; ev->msg_id = 0; + + ev->qemu_version.major = -1; + ev->qemu_version.minor = -1; + ev->qemu_version.micro = -1; } int libxl__ev_qmp_send(libxl__gc *unused_gc, libxl__ev_qmp *ev, -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |