diff options
| author | Peter Maydell | 2020-07-29 21:10:19 +0200 |
|---|---|---|
| committer | Markus Armbruster | 2020-08-03 08:28:08 +0200 |
| commit | 6ac3f1e79974091aa292a0ab8637d5be8e5e4b1e (patch) | |
| tree | a86130fdd4a91c08c874c10d40cd2d42f74dad93 | |
| parent | Merge remote-tracking branch 'remotes/cohuck/tags/s390x-20200731' into staging (diff) | |
| download | qemu-6ac3f1e79974091aa292a0ab8637d5be8e5e4b1e.tar.gz qemu-6ac3f1e79974091aa292a0ab8637d5be8e5e4b1e.tar.xz qemu-6ac3f1e79974091aa292a0ab8637d5be8e5e4b1e.zip | |
qapi/machine.json: Fix missing newline in doc comment
In commit 176d2cda0dee9f4 we added the @die-id field
to the CpuInstanceProperties struct, but in the process
accidentally removed the newline between the doc-comment
lines for @core-id and @thread-id.
Put the newline back in; this fixes a misformatting in the
generated HTML QMP reference manual.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Message-Id: <20200729191019.19168-1-peter.maydell@linaro.org>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
| -rw-r--r-- | qapi/machine.json | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/qapi/machine.json b/qapi/machine.json index f59144023c..daede5ab14 100644 --- a/qapi/machine.json +++ b/qapi/machine.json @@ -825,7 +825,8 @@ # @node-id: NUMA node ID the CPU belongs to # @socket-id: socket number within node/board the CPU belongs to # @die-id: die number within node/board the CPU belongs to (Since 4.1) -# @core-id: core number within die the CPU belongs to# @thread-id: thread number within core the CPU belongs to +# @core-id: core number within die the CPU belongs to +# @thread-id: thread number within core the CPU belongs to # # Note: currently there are 5 properties that could be present # but management should be prepared to pass through other |
