From a102a4acad6c1bc94942efbec18cf7f20bdac40e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marc-Andr=C3=A9=20Lureau?= Date: Thu, 23 Jun 2016 16:45:03 +0200 Subject: [PATCH] qmp-events: move 'DUMP_COMPLETED' doc to schema MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Marc-André Lureau Signed-off-by: Markus Armbruster --- docs/qmp-events.txt | 18 ------------------ qapi/event.json | 7 +++++++ 2 files changed, 7 insertions(+), 18 deletions(-) diff --git a/docs/qmp-events.txt b/docs/qmp-events.txt index 66a287e173..d84be5fdd4 100644 --- a/docs/qmp-events.txt +++ b/docs/qmp-events.txt @@ -1,24 +1,6 @@ QEMU Machine Protocol Events ============================ -DUMP_COMPLETED --------------- - -Emitted when the guest has finished one memory dump. - -Data: - -- "result": DumpQueryResult type described in qapi-schema.json -- "error": Error message when dump failed. This is only a - human-readable string provided when dump failed. It should not be - parsed in any way (json-string, optional) - -Example: - -{ "event": "DUMP_COMPLETED", - "data": {"result": {"total": 1090650112, "status": "completed", - "completed": 1090650112} } } - MIGRATION_PASS -------------- diff --git a/qapi/event.json b/qapi/event.json index f8c7dd6bb5..9d1c2f9fe4 100644 --- a/qapi/event.json +++ b/qapi/event.json @@ -617,6 +617,13 @@ # user should not try to interpret the error string. # # Since: 2.6 +# +# Example: +# +# { "event": "DUMP_COMPLETED", +# "data": {"result": {"total": 1090650112, "status": "completed", +# "completed": 1090650112} } } +# ## { 'event': 'DUMP_COMPLETED' , 'data': { 'result': 'DumpQueryResult', '*error': 'str' } } -- 2.11.4.GIT