aboutsummaryrefslogtreecommitdiff
path: root/qga
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2024-02-05 08:47:02 +0100
committerMarkus Armbruster <armbru@redhat.com>2024-02-12 10:04:31 +0100
commit0b34cf84e65c4804eeb6f6b724acbaaa07c8df0b (patch)
tree0995aae49e88240a4ae659fb3fa8ea13aa3841bc /qga
parentab27bb03d3cfba492c842fbeca45a4a1f0d20833 (diff)
downloadqemu-0b34cf84e65c4804eeb6f6b724acbaaa07c8df0b.zip
qemu-0b34cf84e65c4804eeb6f6b724acbaaa07c8df0b.tar.gz
qemu-0b34cf84e65c4804eeb6f6b724acbaaa07c8df0b.tar.bz2
qga/qapi-schema: Clean up documentation of guest-set-vcpus
The command's doc comment describes the argument, but it's not marked up as such. Easy enough to fix. Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-ID: <20240205074709.3613229-9-armbru@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Diffstat (limited to 'qga')
-rw-r--r--qga/qapi-schema.json20
1 files changed, 10 insertions, 10 deletions
diff --git a/qga/qapi-schema.json b/qga/qapi-schema.json
index 35bde36..f3d168d 100644
--- a/qga/qapi-schema.json
+++ b/qga/qapi-schema.json
@@ -42,8 +42,7 @@
'GuestDeviceType',
'GuestDiskSmart',
'GuestDiskStatsInfo',
- 'GuestNVMeSmart',
- 'guest-set-vcpus' ] } }
+ 'GuestNVMeSmart' ] } }
##
# @guest-sync-delimited:
@@ -786,14 +785,15 @@
# Attempt to reconfigure (currently: enable/disable) logical
# processors inside the guest.
#
-# The input list is processed node by node in order. In each node
-# @logical-id is used to look up the guest VCPU, for which @online
-# specifies the requested state. The set of distinct @logical-id's is
-# only required to be a subset of the guest-supported identifiers.
-# There's no restriction on list length or on repeating the same
-# @logical-id (with possibly different @online field). Preferably the
-# input list should describe a modified subset of @guest-get-vcpus'
-# return value.
+# @vcpus: The logical processors to be reconfigured. This list is
+# processed node by node in order. In each node @logical-id is
+# used to look up the guest VCPU, for which @online specifies the
+# requested state. The set of distinct @logical-id's is only
+# required to be a subset of the guest-supported identifiers.
+# There's no restriction on list length or on repeating the same
+# @logical-id (with possibly different @online field). Preferably
+# the input list should describe a modified subset of
+# @guest-get-vcpus' return value.
#
# Returns: The length of the initial sublist that has been
# successfully processed. The guest agent maximizes this value.