diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2016-06-23 15:53:50 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2017-01-16 09:19:48 +0100 |
commit | e161df3939fd725b67d660e793e1538860c156fe (patch) | |
tree | 32c09a1266edc00f78f413d5a1d3407572897684 /docs | |
parent | e21e65b212612083439a68f18b44e373aa38de00 (diff) |
qmp-events: move 'BLOCK_JOB_CANCELLED' 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 | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/docs/qmp-events.txt b/docs/qmp-events.txt index 9b42f407d4..e001571985 100644 --- a/docs/qmp-events.txt +++ b/docs/qmp-events.txt @@ -30,31 +30,6 @@ Example: Note: this event is rate-limited. -BLOCK_JOB_CANCELLED -------------------- - -Emitted when a block job has been cancelled. - -Data: - -- "type": Job type (json-string; "stream" for image streaming - "commit" for block commit) -- "device": Job identifier. Originally the device name but other - values are allowed since QEMU 2.7 (json-string) -- "len": Maximum progress value (json-int) -- "offset": Current progress value (json-int) - On success this is equal to len. - On failure this is less than len. -- "speed": Rate limit, bytes per second (json-int) - -Example: - -{ "event": "BLOCK_JOB_CANCELLED", - "data": { "type": "stream", "device": "virtio-disk0", - "len": 10737418240, "offset": 134217728, - "speed": 0 }, - "timestamp": { "seconds": 1267061043, "microseconds": 959568 } } - BLOCK_JOB_ERROR --------------- |