diff options
author | Victor Toso | 2022-09-01 10:58:39 +0200 |
---|---|---|
committer | Markus Armbruster | 2022-09-07 15:10:13 +0200 |
commit | b4c32cbf06621117214f71501866514011434f43 (patch) | |
tree | f59cb595b68598bd716c8445ce4f873e12ad620b | |
parent | qapi: fix examples of blockdev-add with qcow2 (diff) | |
download | qemu-b4c32cbf06621117214f71501866514011434f43.tar.gz qemu-b4c32cbf06621117214f71501866514011434f43.tar.xz qemu-b4c32cbf06621117214f71501866514011434f43.zip |
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>
-rw-r--r-- | qapi/machine.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qapi/machine.json b/qapi/machine.json index 4782eea2c3..abb2f48808 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]"} # ]}' # |