diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2016-06-23 15:54:20 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2017-01-16 09:19:48 +0100 |
commit | af0e09106c57e732234eaf9bea5973437b3711d5 (patch) | |
tree | dec23862f88fa4157e736c8d1f0c828e8e9e497c | |
parent | e161df3939fd725b67d660e793e1538860c156fe (diff) |
qmp-events: move 'BLOCK_JOB_ERROR' doc to schema
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
-rw-r--r-- | docs/qmp-events.txt | 23 | ||||
-rw-r--r-- | qapi/block-core.json | 9 |
2 files changed, 9 insertions, 23 deletions
diff --git a/docs/qmp-events.txt b/docs/qmp-events.txt index e001571985..bc831bf365 100644 --- a/docs/qmp-events.txt +++ b/docs/qmp-events.txt @@ -30,29 +30,6 @@ Example: Note: this event is rate-limited. -BLOCK_JOB_ERROR ---------------- - -Emitted when a block job encounters an error. - -Data: - -- "device": Job identifier. Originally the device name but other - values are allowed since QEMU 2.7 (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, the job may fail later - "report": error will be reported and the job canceled - "stop": error caused job to be paused - -Example: - -{ "event": "BLOCK_JOB_ERROR", - "data": { "device": "ide0-hd1", - "operation": "write", - "action": "stop" }, - "timestamp": { "seconds": 1265044230, "microseconds": 450486 } } - BLOCK_JOB_READY --------------- diff --git a/qapi/block-core.json b/qapi/block-core.json index 989334ed0c..7af44c8d4a 100644 --- a/qapi/block-core.json +++ b/qapi/block-core.json @@ -3374,6 +3374,15 @@ # @action: action that has been taken # # Since: 1.3 +# +# Example: +# +# <- { "event": "BLOCK_JOB_ERROR", +# "data": { "device": "ide0-hd1", +# "operation": "write", +# "action": "stop" }, +# "timestamp": { "seconds": 1265044230, "microseconds": 450486 } } +# ## { 'event': 'BLOCK_JOB_ERROR', 'data': { 'device' : 'str', |