aboutsummaryrefslogtreecommitdiff
path: root/qapi/machine.json
diff options
context:
space:
mode:
authorVictor Toso <victortoso@redhat.com>2022-09-01 10:58:39 +0200
committerMarkus Armbruster <armbru@redhat.com>2022-09-07 15:10:13 +0200
commitb4c32cbf06621117214f71501866514011434f43 (patch)
treef59cb595b68598bd716c8445ce4f873e12ad620b /qapi/machine.json
parentb6522938327141235b97ab38e40c6c4512587373 (diff)
downloadqemu-b4c32cbf06621117214f71501866514011434f43.zip
qemu-b4c32cbf06621117214f71501866514011434f43.tar.gz
qemu-b4c32cbf06621117214f71501866514011434f43.tar.bz2
qapi: fix example of query-hotpluggable-cpus command
The example return type has the wrong member name. Fix it. Problem was noticed when using the example as a test case for Go bindings. Signed-off-by: Victor Toso <victortoso@redhat.com> Message-Id: <20220901085840.22520-10-victortoso@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'qapi/machine.json')
-rw-r--r--qapi/machine.json4
1 files changed, 2 insertions, 2 deletions
diff --git a/qapi/machine.json b/qapi/machine.json
index 4782eea..abb2f48 100644
--- a/qapi/machine.json
+++ b/qapi/machine.json
@@ -958,9 +958,9 @@
#
# -> { "execute": "query-hotpluggable-cpus" }
# <- {"return": [
-# { "props": { "core": 8 }, "type": "POWER8-spapr-cpu-core",
+# { "props": { "core-id": 8 }, "type": "POWER8-spapr-cpu-core",
# "vcpus-count": 1 },
-# { "props": { "core": 0 }, "type": "POWER8-spapr-cpu-core",
+# { "props": { "core-id": 0 }, "type": "POWER8-spapr-cpu-core",
# "vcpus-count": 1, "qom-path": "/machine/unattached/device[0]"}
# ]}'
#