diff options
author | Luiz Capitulino <lcapitulino@redhat.com> | 2010-02-03 12:41:00 -0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2010-02-10 11:57:02 -0600 |
commit | aa1db6edaf5ba99b6a0fa6e6a45e7568ba5fa4c9 (patch) | |
tree | 5513d365b3e3532e90626f071a15298908a50968 /QMP | |
parent | f4f0d391b26afcce86df85566788be7170127116 (diff) | |
download | qemu-aa1db6edaf5ba99b6a0fa6e6a45e7568ba5fa4c9.tar.gz qemu-aa1db6edaf5ba99b6a0fa6e6a45e7568ba5fa4c9.tar.bz2 qemu-aa1db6edaf5ba99b6a0fa6e6a45e7568ba5fa4c9.zip |
QMP: BLOCK_IO_ERROR event handling
This commit adds the basic definitions for the BLOCK_IO_ERROR
event, but actual event emission will be introduced by the
next commits.
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'QMP')
-rw-r--r-- | QMP/qmp-events.txt | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/QMP/qmp-events.txt b/QMP/qmp-events.txt index dc48cccea1..d585a8d1b6 100644 --- a/QMP/qmp-events.txt +++ b/QMP/qmp-events.txt @@ -43,3 +43,24 @@ Data: 'server' and 'client' keys with the same keys as 'query-vnc'. Description: Issued when the VNC session is made active. Data: 'server' and 'client' keys with the same keys as 'query-vnc'. + +7 BLOCK_IO_ERROR +---------------- + +Description: Issued when a disk I/O error occurs +Data: + +- 'device': device name (json-string) +- 'operation': I/O operation (json-string, "read" or "write") +- 'action': action that has been taken, it's one of the following: + "ignore": error has been ignored + "report": error has been reported to the device + "stop": error caused VM to be stopped + +Example: + +{ "event": "BLOCK_IO_ERROR", + "data": { "device": "ide0-hd1", + "operation": "write", + "action": "stop" }, + "timestamp": { "seconds": 1265044230, "microseconds": 450486 } } |