diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2016-06-23 15:52:10 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2017-01-16 09:19:48 +0100 |
commit | 07c9f583d50ba68bd19dc2a66236d43c638f1f03 (patch) | |
tree | 5083bd1a96dfec15a58c9b4cd624e7756e6c95ff /docs | |
parent | 370d4eba7de41e23d84ed617371b45f2db92d68d (diff) |
qmp-events: move 'BLOCK_IO_ERROR' 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 | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/docs/qmp-events.txt b/docs/qmp-events.txt index f3ea933f87..dc5bce111b 100644 --- a/docs/qmp-events.txt +++ b/docs/qmp-events.txt @@ -30,37 +30,6 @@ Example: Note: this event is rate-limited. -BLOCK_IO_ERROR --------------- - -Emitted when a disk I/O error occurs. - -Data: - -- "device": device name. This is always present for compatibility - reasons, but it can be empty ("") if the image does not - have a device name associated. (json-string) -- "node-name": node name. Note that errors may be reported for the root node - that is directly attached to a guest device rather than for the - node where the error occurred. (json-string) -- "operation": I/O operation (json-string, "read" or "write") -- "action": action that has been taken, it's one of the following (json-string): - "ignore": error has been ignored - "report": error has been reported to the device - "stop": the VM is going to stop because of the error - -Example: - -{ "event": "BLOCK_IO_ERROR", - "data": { "device": "ide0-hd1", - "node-name": "#block212", - "operation": "write", - "action": "stop" }, - "timestamp": { "seconds": 1265044230, "microseconds": 450486 } } - -Note: If action is "stop", a STOP event will eventually follow the -BLOCK_IO_ERROR event. - BLOCK_JOB_CANCELLED ------------------- |