Skip to content

Commit 39a6e4f

Browse files
committed
Merge tag 'pull-qapi-2024-02-03' of https://repo.or.cz/qemu/armbru into staging
QAPI patches patches for 2024-02-03 # -----BEGIN PGP SIGNATURE----- # # iQJGBAABCAAwFiEENUvIs9frKmtoZ05fOHC0AOuRhlMFAmW992gSHGFybWJydUBy # ZWRoYXQuY29tAAoJEDhwtADrkYZTgt4P/RLioQBDBeFw77RMVJqU7YHjvdPrFtVa # jpN3g+OqX7zN97aCfMnTueTi989qyHr7J8ufxcMsxKjxH8//Qs5vbkjVmzecxsiq # GOP0a1HrvvKvjAvttsM3OLYKWwwas5mvZ1wjerHItkC8t5QHIzAKHCHiJkzD5W0r # Kew9Mi9gzqRdETHlY+QFnwdr1ksG+L6iB3yefWu01emSPI5XXdQHGMyorYauwZGy # ettuSFwc/kVLd0wipsr7EKNEeK8c211EmAj4aqgpDSAzTDUyjNc/CjI1YGYvcBkz # 6ejgIRrUMmS3F9hytj0Gp0CC7mjAcZzMN3HNm1VHeuBR3Eo3iWnPAGeIV8w1bihp # GsioU+a6ZbcB1ylYRIadpUyrVABNGSlv9SLJiHYeZI+N/0Wz2ByWpYvjrmvvQIB9 # Kt7Tq+biab26OR+b7jZqae4d9EhTkYifP3cV2Bnv9gf9uONV8LRMDoCHSAm3EdCH # 3R361imS1y394YZbp2iMI4PxeNjh+PvL+rduNZbSGPNY+x9dEbBUH5YJBjnnw/Du # YM1yCiyoWyiQbSxGcILn9BCCBDcntof4XzFg7MYhN717fvQaLJMEuRlKE9LTC3GT # Wrbu4ZkTq7r//gXLtnO/L3S7y4inhKow3nKPXUmiqxVuRlRvLq06d1NHVI60FZFf # keNA4PC6X/6R # =2BzL # -----END PGP SIGNATURE----- # gpg: Signature made Sat 03 Feb 2024 08:20:56 GMT # gpg: using RSA key 354BC8B3D7EB2A6B68674E5F3870B400EB918653 # gpg: issuer "[email protected]" # gpg: Good signature from "Markus Armbruster <[email protected]>" [full] # gpg: aka "Markus Armbruster <[email protected]>" [full] # Primary key fingerprint: 354B C8B3 D7EB 2A6B 6867 4E5F 3870 B400 EB91 8653 * tag 'pull-qapi-2024-02-03' of https://repo.or.cz/qemu/armbru: qga/qapi-schema: Move command description right after command name qga: Move type description right after type name qapi: Elide "Potential additional modes" from generated docs qapi: Drop redundant documentation of conditional qapi: Drop redundant documentation of inherited members Signed-off-by: Peter Maydell <[email protected]>
2 parents 10eab96 + 3424ed6 commit 39a6e4f

File tree

5 files changed

+17
-22
lines changed

5 files changed

+17
-22
lines changed

qapi/block-core.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4070,6 +4070,8 @@
40704070
##
40714071
# @BlockdevOptionsIscsi:
40724072
#
4073+
# Driver specific block device options for iscsi
4074+
#
40734075
# @transport: The iscsi transport type
40744076
#
40754077
# @portal: The address of the iscsi portal
@@ -4094,8 +4096,6 @@
40944096
# @timeout: Timeout in seconds after which a request will timeout. 0
40954097
# means no timeout and is the default.
40964098
#
4097-
# Driver specific block device options for iscsi
4098-
#
40994099
# Since: 2.9
41004100
##
41014101
{ 'struct': 'BlockdevOptionsIscsi',
@@ -4665,8 +4665,6 @@
46654665
# @force-share: force share all permission on added nodes. Requires
46664666
# read-only=true. (Since 2.10)
46674667
#
4668-
# Remaining options are determined by the block driver.
4669-
#
46704668
# Since: 2.9
46714669
##
46724670
{ 'union': 'BlockdevOptions',

qapi/block-export.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -266,13 +266,14 @@
266266
#
267267
# @hard: Drop all connections immediately and remove export.
268268
#
269-
# Potential additional modes to be added in the future:
269+
# TODO: Potential additional modes to be added in the future:
270270
#
271-
# hide: Just hide export from new clients, leave existing connections
272-
# as is. Remove export after all clients are disconnected.
271+
# - hide: Just hide export from new clients, leave existing
272+
# connections as is. Remove export after all clients are
273+
# disconnected.
273274
#
274-
# soft: Hide export from new clients, answer with ESHUTDOWN for all
275-
# further requests from existing clients.
275+
# - soft: Hide export from new clients, answer with ESHUTDOWN for
276+
# all further requests from existing clients.
276277
#
277278
# Since: 2.12
278279
##

qapi/introspect.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,6 @@
9393
# particular order. (since 4.1 for object types, 4.2 for
9494
# commands, 5.0 for the rest)
9595
#
96-
# Additional members depend on the value of @meta-type.
97-
#
9896
# Since: 2.5
9997
##
10098
{ 'union': 'SchemaInfo',

qapi/misc-target.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,8 +237,6 @@
237237
#
238238
# @filename: the path to the file to dump to
239239
#
240-
# This command is only supported on s390 architecture.
241-
#
242240
# Since: 2.5
243241
#
244242
# Example:

qga/qapi-schema.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1565,11 +1565,11 @@
15651565
##
15661566
# @guest-ssh-get-authorized-keys:
15671567
#
1568-
# @username: the user account to add the authorized keys
1569-
#
15701568
# Return the public keys from user .ssh/authorized_keys on Unix
15711569
# systems (not implemented for other systems).
15721570
#
1571+
# @username: the user account to add the authorized keys
1572+
#
15731573
# Returns: @GuestAuthorizedKeys
15741574
#
15751575
# Since: 5.2
@@ -1582,16 +1582,16 @@
15821582
##
15831583
# @guest-ssh-add-authorized-keys:
15841584
#
1585+
# Append public keys to user .ssh/authorized_keys on Unix systems (not
1586+
# implemented for other systems).
1587+
#
15851588
# @username: the user account to add the authorized keys
15861589
#
15871590
# @keys: the public keys to add (in OpenSSH/sshd(8) authorized_keys
15881591
# format)
15891592
#
15901593
# @reset: ignore the existing content, set it with the given keys only
15911594
#
1592-
# Append public keys to user .ssh/authorized_keys on Unix systems (not
1593-
# implemented for other systems).
1594-
#
15951595
# Returns: Nothing on success.
15961596
#
15971597
# Since: 5.2
@@ -1603,15 +1603,15 @@
16031603
##
16041604
# @guest-ssh-remove-authorized-keys:
16051605
#
1606+
# Remove public keys from the user .ssh/authorized_keys on Unix
1607+
# systems (not implemented for other systems). It's not an error if
1608+
# the key is already missing.
1609+
#
16061610
# @username: the user account to remove the authorized keys
16071611
#
16081612
# @keys: the public keys to remove (in OpenSSH/sshd(8) authorized_keys
16091613
# format)
16101614
#
1611-
# Remove public keys from the user .ssh/authorized_keys on Unix
1612-
# systems (not implemented for other systems). It's not an error if
1613-
# the key is already missing.
1614-
#
16151615
# Returns: Nothing on success.
16161616
#
16171617
# Since: 5.2

0 commit comments

Comments
 (0)