summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2016-06-23 15:09:51 +0200
committerMarkus Armbruster <armbru@redhat.com>2017-01-16 09:19:47 +0100
commitdd746afbb43989064cb98d2448d066da2e156aa8 (patch)
treef38f65134bed9ac809496c0afb5b195f24336f78
parent5fba0a72ec1968debca8bb80732cc75aa7cd8a21 (diff)
downloadfocaccia-qemu-dd746afbb43989064cb98d2448d066da2e156aa8.tar.gz
focaccia-qemu-dd746afbb43989064cb98d2448d066da2e156aa8.zip
qmp-commands: move 'query-version' doc to schema
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
-rw-r--r--docs/qmp-commands.txt27
-rw-r--r--qapi/common.json15
2 files changed, 15 insertions, 27 deletions
diff --git a/docs/qmp-commands.txt b/docs/qmp-commands.txt
index d586059c84..cb41253592 100644
--- a/docs/qmp-commands.txt
+++ b/docs/qmp-commands.txt
@@ -209,33 +209,6 @@ Note: This command must be issued before issuing any other command.
 =================
 
 
-query-version
--------------
-
-Show QEMU version.
-
-Return a json-object with the following information:
-
-- "qemu": A json-object containing three integer values:
-    - "major": QEMU's major version (json-int)
-    - "minor": QEMU's minor version (json-int)
-    - "micro": QEMU's micro version (json-int)
-- "package": package's version (json-string)
-
-Example:
-
--> { "execute": "query-version" }
-<- {
-      "return":{
-         "qemu":{
-            "major":0,
-            "minor":11,
-            "micro":5
-         },
-         "package":""
-      }
-   }
-
 query-commands
 --------------
 
diff --git a/qapi/common.json b/qapi/common.json
index d93f159946..d6a6d76176 100644
--- a/qapi/common.json
+++ b/qapi/common.json
@@ -77,6 +77,21 @@
 # Returns:  A @VersionInfo object describing the current version of QEMU.
 #
 # Since: 0.14.0
+#
+# Example:
+#
+# -> { "execute": "query-version" }
+# <- {
+#       "return":{
+#          "qemu":{
+#             "major":0,
+#             "minor":11,
+#             "micro":5
+#          },
+#          "package":""
+#       }
+#    }
+#
 ##
 { 'command': 'query-version', 'returns': 'VersionInfo' }