mirror of https://github.com/xqemu/xqemu.git
qmp-events: move 'BLOCK_IMAGE_CORRUPTED' doc to schema
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com>
This commit is contained in:
parent
4d8bb958fa
commit
370d4eba7d
|
@ -30,34 +30,6 @@ Example:
|
||||||
|
|
||||||
Note: this event is rate-limited.
|
Note: this event is rate-limited.
|
||||||
|
|
||||||
BLOCK_IMAGE_CORRUPTED
|
|
||||||
---------------------
|
|
||||||
|
|
||||||
Emitted when a disk image is being marked corrupt. The image can be
|
|
||||||
identified by its device or node name. The 'device' field is always
|
|
||||||
present for compatibility reasons, but it can be empty ("") if the
|
|
||||||
image does not have a device name associated.
|
|
||||||
|
|
||||||
Data:
|
|
||||||
|
|
||||||
- "device": Device name (json-string)
|
|
||||||
- "node-name": Node name (json-string, optional)
|
|
||||||
- "msg": Informative message (e.g., reason for the corruption)
|
|
||||||
(json-string)
|
|
||||||
- "offset": If the corruption resulted from an image access, this
|
|
||||||
is the host's access offset into the image
|
|
||||||
(json-int, optional)
|
|
||||||
- "size": If the corruption resulted from an image access, this
|
|
||||||
is the access size (json-int, optional)
|
|
||||||
|
|
||||||
Example:
|
|
||||||
|
|
||||||
{ "event": "BLOCK_IMAGE_CORRUPTED",
|
|
||||||
"data": { "device": "ide0-hd0", "node-name": "node0",
|
|
||||||
"msg": "Prevented active L1 table overwrite", "offset": 196608,
|
|
||||||
"size": 65536 },
|
|
||||||
"timestamp": { "seconds": 1378126126, "microseconds": 966463 } }
|
|
||||||
|
|
||||||
BLOCK_IO_ERROR
|
BLOCK_IO_ERROR
|
||||||
--------------
|
--------------
|
||||||
|
|
||||||
|
|
|
@ -3193,7 +3193,10 @@
|
||||||
##
|
##
|
||||||
# @BLOCK_IMAGE_CORRUPTED:
|
# @BLOCK_IMAGE_CORRUPTED:
|
||||||
#
|
#
|
||||||
# Emitted when a corruption has been detected in a disk image
|
# Emitted when a disk image is being marked corrupt. The image can be
|
||||||
|
# identified by its device or node name. The 'device' field is always
|
||||||
|
# present for compatibility reasons, but it can be empty ("") if the
|
||||||
|
# image does not have a device name associated.
|
||||||
#
|
#
|
||||||
# @device: device name. This is always present for compatibility
|
# @device: device name. This is always present for compatibility
|
||||||
# reasons, but it can be empty ("") if the image does not
|
# reasons, but it can be empty ("") if the image does not
|
||||||
|
@ -3211,10 +3214,18 @@
|
||||||
# @size: #optional, if the corruption resulted from an image access, this is
|
# @size: #optional, if the corruption resulted from an image access, this is
|
||||||
# the access size
|
# the access size
|
||||||
#
|
#
|
||||||
# fatal: if set, the image is marked corrupt and therefore unusable after this
|
# @fatal: if set, the image is marked corrupt and therefore unusable after this
|
||||||
# event and must be repaired (Since 2.2; before, every
|
# event and must be repaired (Since 2.2; before, every
|
||||||
# BLOCK_IMAGE_CORRUPTED event was fatal)
|
# BLOCK_IMAGE_CORRUPTED event was fatal)
|
||||||
#
|
#
|
||||||
|
# Example:
|
||||||
|
#
|
||||||
|
# <- { "event": "BLOCK_IMAGE_CORRUPTED",
|
||||||
|
# "data": { "device": "ide0-hd0", "node-name": "node0",
|
||||||
|
# "msg": "Prevented active L1 table overwrite", "offset": 196608,
|
||||||
|
# "size": 65536 },
|
||||||
|
# "timestamp": { "seconds": 1378126126, "microseconds": 966463 } }
|
||||||
|
#
|
||||||
# Since: 1.7
|
# Since: 1.7
|
||||||
##
|
##
|
||||||
{ 'event': 'BLOCK_IMAGE_CORRUPTED',
|
{ 'event': 'BLOCK_IMAGE_CORRUPTED',
|
||||||
|
|
Loading…
Reference in New Issue