]> git.proxmox.com Git - qemu.git/commitdiff
qemu-ga: Extend 'guest-info' command to expose flag 'success-response'
authorMark Wu <wudxw@linux.vnet.ibm.com>
Wed, 9 Oct 2013 02:37:26 +0000 (10:37 +0800)
committerMichael Roth <mdroth@linux.vnet.ibm.com>
Thu, 10 Oct 2013 19:52:37 +0000 (14:52 -0500)
Now we have several qemu-ga commands not returning response on success.
It has been documented in qga/qapi-schema.json already. This patch exposes
the 'success-response' flag by extending 'guest-info' command. With this
change, the clients can handle the command response more flexibly.

Signed-off-by: Mark Wu <wudxw@linux.vnet.ibm.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Michael Roth <mdroth@linux.vnet.ibm.com>
*fixed up commit subject
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
include/qapi/qmp/dispatch.h
qapi/qmp-registry.c
qga/commands.c
qga/qapi-schema.json

index 7d759ef287bf4bc1ffb0aa6a8d617744f93ae3a7..cea38181bf8f46e9ae9f694183dd87199b302dc6 100644 (file)
@@ -49,6 +49,7 @@ void qmp_disable_command(const char *name);
 void qmp_enable_command(const char *name);
 bool qmp_command_is_enabled(const QmpCommand *cmd);
 const char *qmp_command_name(const QmpCommand *cmd);
+bool qmp_has_success_response(const QmpCommand *cmd);
 QObject *qmp_build_error_object(Error *errp);
 typedef void (*qmp_cmd_callback_fn)(QmpCommand *cmd, void *opaque);
 void qmp_for_each_command(qmp_cmd_callback_fn fn, void *opaque);
index 5e26710d8984b3d2194d76fcdecb06c5ed8fb640..3e4498a3f6b88980f3c6194a1f7db501270fa111 100644 (file)
@@ -76,6 +76,11 @@ const char *qmp_command_name(const QmpCommand *cmd)
     return cmd->name;
 }
 
+bool qmp_has_success_response(const QmpCommand *cmd)
+{
+    return !(cmd->options & QCO_NO_SUCCESS_RESP);
+}
+
 void qmp_for_each_command(qmp_cmd_callback_fn fn, void *opaque)
 {
     QmpCommand *cmd;
index e87cbf862f17be85e661ecac60641e624a624e91..a0c2de07ece69204415c3f7292ecc1a39c10a51d 100644 (file)
@@ -54,6 +54,7 @@ static void qmp_command_info(QmpCommand *cmd, void *opaque)
     cmd_info = g_malloc0(sizeof(GuestAgentCommandInfo));
     cmd_info->name = g_strdup(qmp_command_name(cmd));
     cmd_info->enabled = qmp_command_is_enabled(cmd);
+    cmd_info->success_response = qmp_has_success_response(cmd);
 
     cmd_info_list = g_malloc0(sizeof(GuestAgentCommandInfoList));
     cmd_info_list->value = cmd_info;
index 7155b7ab55fc4ef5336fd771ca06905c485fad62..245f968bc28545f0b5333f05fe802217cdd2576b 100644 (file)
 #
 # @enabled: whether command is currently enabled by guest admin
 #
+# @success-response: whether command returns a response on success
+#                    (since 1.7)
+#
 # Since 1.1.0
 ##
 { 'type': 'GuestAgentCommandInfo',
-  'data': { 'name': 'str', 'enabled': 'bool' } }
+  'data': { 'name': 'str', 'enabled': 'bool', 'success-response': 'bool' } }
 
 ##
 # @GuestAgentInfo