diff options
author | Peter Xu <peterx@redhat.com> | 2016-02-18 13:16:56 +0800 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2016-02-22 18:40:29 +0100 |
commit | d42a0d1484f03d05184ed9bb867fee42476a588f (patch) | |
tree | f0f9926f4181f89dde0d49b0460fb13c5f55227d /qapi | |
parent | 4a6b52d67e36486ae3d695170a2a7eb39f7a032e (diff) | |
download | qemu-d42a0d1484f03d05184ed9bb867fee42476a588f.zip |
dump-guest-memory: add qmp event DUMP_COMPLETED
One new QMP event DUMP_COMPLETED is added. When a dump finishes, one
DUMP_COMPLETED event will occur to notify the user.
Signed-off-by: Peter Xu <peterx@redhat.com>
Reviewed-by: Fam Zheng <famz@redhat.com>
Message-Id: <1455772616-8668-12-git-send-email-peterx@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'qapi')
-rw-r--r-- | qapi/event.json | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/qapi/event.json b/qapi/event.json index 390fd45788..1a45a6cb26 100644 --- a/qapi/event.json +++ b/qapi/event.json @@ -369,3 +369,19 @@ ## { 'event': 'MEM_UNPLUG_ERROR', 'data': { 'device': 'str', 'msg': 'str' } } + +## +# @DUMP_COMPLETED +# +# Emitted when background dump has completed +# +# @result: DumpQueryResult type described in qapi-schema.json. +# +# @error: #optional human-readable error string that provides +# hint on why dump failed. Only presents on failure. The +# user should not try to interpret the error string. +# +# Since: 2.6 +## +{ 'event': 'DUMP_COMPLETED' , + 'data': { 'result': 'DumpQueryResult', '*error': 'str' } } |