diff options
author | Markus Armbruster <armbru@redhat.com> | 2023-04-28 12:54:29 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2023-05-10 10:01:01 +0200 |
commit | a937b6aa739f65f2cae2ad9a7eb65a309ad2a359 (patch) | |
tree | c11a2c7b6fc5b850ef4dd6b613902759824779a5 /qapi/cxl.json | |
parent | 059d341a67bb660a7957cb62a6a860c92c2fb64a (diff) |
qapi: Reformat doc comments to conform to current conventions
Change
# @name: Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed
# do eiusmod tempor incididunt ut labore et dolore magna aliqua.
to
# @name: Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed
# do eiusmod tempor incididunt ut labore et dolore magna aliqua.
See recent commit "qapi: Relax doc string @name: description
indentation rules" for rationale.
Reflow paragraphs to 70 columns width, and consistently use two spaces
to separate sentences.
To check the generated documentation does not change, I compared the
generated HTML before and after this commit with "wdiff -3". Finds no
differences. Comparing with diff is not useful, as the reflown
paragraphs are visible there.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20230428105429.1687850-18-armbru@redhat.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Acked-by: Lukas Straub <lukasstraub2@web.de>
[Straightforward conflicts in qapi/audio.json qapi/misc-target.json
qapi/run-state.json resolved]
Diffstat (limited to 'qapi/cxl.json')
-rw-r--r-- | qapi/cxl.json | 74 |
1 files changed, 50 insertions, 24 deletions
diff --git a/qapi/cxl.json b/qapi/cxl.json index 4be7d46041..b21c9b4c1c 100644 --- a/qapi/cxl.json +++ b/qapi/cxl.json @@ -8,26 +8,45 @@ ## # @CxlUncorErrorType: # -# Type of uncorrectable CXL error to inject. These errors are reported via -# an AER uncorrectable internal error with additional information logged at -# the CXL device. +# Type of uncorrectable CXL error to inject. These errors are +# reported via an AER uncorrectable internal error with additional +# information logged at the CXL device. +# +# @cache-data-parity: Data error such as data parity or data ECC error +# CXL.cache +# +# @cache-address-parity: Address parity or other errors associated +# with the address field on CXL.cache +# +# @cache-be-parity: Byte enable parity or other byte enable errors on +# CXL.cache # -# @cache-data-parity: Data error such as data parity or data ECC error CXL.cache -# @cache-address-parity: Address parity or other errors associated with the -# address field on CXL.cache -# @cache-be-parity: Byte enable parity or other byte enable errors on CXL.cache # @cache-data-ecc: ECC error on CXL.cache -# @mem-data-parity: Data error such as data parity or data ECC error on CXL.mem -# @mem-address-parity: Address parity or other errors associated with the -# address field on CXL.mem -# @mem-be-parity: Byte enable parity or other byte enable errors on CXL.mem. +# +# @mem-data-parity: Data error such as data parity or data ECC error +# on CXL.mem +# +# @mem-address-parity: Address parity or other errors associated with +# the address field on CXL.mem +# +# @mem-be-parity: Byte enable parity or other byte enable errors on +# CXL.mem. +# # @mem-data-ecc: Data ECC error on CXL.mem. +# # @reinit-threshold: REINIT threshold hit. +# # @rsvd-encoding: Received unrecognized encoding. +# # @poison-received: Received poison from the peer. -# @receiver-overflow: Buffer overflows (first 3 bits of header log indicate which) +# +# @receiver-overflow: Buffer overflows (first 3 bits of header log +# indicate which) +# # @internal: Component specific error +# # @cxl-ide-tx: Integrity and data encryption tx error. +# # @cxl-ide-rx: Integrity and data encryption rx error. # # Since: 8.0 @@ -58,6 +77,7 @@ # Record of a single error including header log. # # @type: Type of error +# # @header: 16 DWORD of header. # # Since: 8.0 @@ -72,10 +92,11 @@ ## # @cxl-inject-uncorrectable-errors: # -# Command to allow injection of multiple errors in one go. This allows testing -# of multiple header log handling in the OS. +# Command to allow injection of multiple errors in one go. This +# allows testing of multiple header log handling in the OS. # # @path: CXL Type 3 device canonical QOM path +# # @errors: Errors to inject # # Since: 8.0 @@ -90,10 +111,16 @@ # Type of CXL correctable error to inject # # @cache-data-ecc: Data ECC error on CXL.cache +# # @mem-data-ecc: Data ECC error on CXL.mem -# @crc-threshold: Component specific and applicable to 68 byte Flit mode only. +# +# @crc-threshold: Component specific and applicable to 68 byte Flit +# mode only. +# # @cache-poison-received: Received poison from a peer on CXL.cache. +# # @mem-poison-received: Received poison from a peer on CXL.mem +# # @physical: Received error indication from the physical layer. # # Since: 8.0 @@ -111,18 +138,17 @@ ## # @cxl-inject-correctable-error: # -# Command to inject a single correctable error. Multiple error injection -# of this error type is not interesting as there is no associated header log. -# These errors are reported via AER as a correctable internal error, with -# additional detail available from the CXL device. +# Command to inject a single correctable error. Multiple error +# injection of this error type is not interesting as there is no +# associated header log. These errors are reported via AER as a +# correctable internal error, with additional detail available from +# the CXL device. # # @path: CXL Type 3 device canonical QOM path +# # @type: Type of error. # # Since: 8.0 ## -{ 'command': 'cxl-inject-correctable-error', - 'data': { 'path': 'str', - 'type': 'CxlCorErrorType' - } -} +{'command': 'cxl-inject-correctable-error', + 'data': {'path': 'str', 'type': 'CxlCorErrorType'}} |