a937b6aa73
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]
39 lines
809 B
Python
39 lines
809 B
Python
# -*- Mode: Python -*-
|
|
# vim: filetype=python
|
|
#
|
|
|
|
##
|
|
# = RDMA device
|
|
##
|
|
|
|
##
|
|
# @RDMA_GID_STATUS_CHANGED:
|
|
#
|
|
# Emitted when guest driver adds/deletes GID to/from device
|
|
#
|
|
# @netdev: RoCE Network Device name
|
|
#
|
|
# @gid-status: Add or delete indication
|
|
#
|
|
# @subnet-prefix: Subnet Prefix
|
|
#
|
|
# @interface-id: Interface ID
|
|
#
|
|
# Since: 4.0
|
|
#
|
|
# Example:
|
|
#
|
|
# <- {"timestamp": {"seconds": 1541579657, "microseconds": 986760},
|
|
# "event": "RDMA_GID_STATUS_CHANGED",
|
|
# "data":
|
|
# {"netdev": "bridge0",
|
|
# "interface-id": 15880512517475447892,
|
|
# "gid-status": true,
|
|
# "subnet-prefix": 33022}}
|
|
##
|
|
{ 'event': 'RDMA_GID_STATUS_CHANGED',
|
|
'data': { 'netdev' : 'str',
|
|
'gid-status' : 'bool',
|
|
'subnet-prefix' : 'uint64',
|
|
'interface-id' : 'uint64' } }
|