diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2016-06-23 15:51:26 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2017-01-16 09:19:48 +0100 |
commit | 370d4eba7de41e23d84ed617371b45f2db92d68d (patch) | |
tree | d2f9adff59b2f7c7993aac704fd3f23b06ead2e9 /docs | |
parent | 4d8bb958fa0bf8695c5b38b9f153073c62a989b5 (diff) |
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>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/qmp-events.txt | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/docs/qmp-events.txt b/docs/qmp-events.txt index e0a2365c63..f3ea933f87 100644 --- a/docs/qmp-events.txt +++ b/docs/qmp-events.txt @@ -30,34 +30,6 @@ Example: 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 -------------- |