From 14df1ea1683a52decbe4664fba6a8aa139536f27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Date: Thu, 23 Jun 2016 16:39:06 +0200 Subject: [PATCH] qmp-events: move 'VSERPORT_CHANGE' doc to schema MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 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 6f42640d5f..59743b569e 100644 --- a/docs/qmp-events.txt +++ b/docs/qmp-events.txt @@ -49,21 +49,3 @@ Data: None. Example: {"timestamp": {"seconds": 1449669631, "microseconds": 239225}, "event": "MIGRATION_PASS", "data": {"pass": 2}} - -VSERPORT_CHANGE ---------------- - -Emitted when the guest opens or closes a virtio-serial port. - -Data: - -- "id": device identifier of the virtio-serial port (json-string) -- "open": true if the guest has opened the virtio-serial port (json-bool) - -Example: - -{ "event": "VSERPORT_CHANGE", - "data": { "id": "channel0", "open": true }, - "timestamp": { "seconds": 1401385907, "microseconds": 422329 } } - -Note: this event is rate-limited separately for each "id". diff --git a/qapi/event.json b/qapi/event.json index 5779d5d714..a9f974fa36 100644 --- a/qapi/event.json +++ b/qapi/event.json @@ -571,6 +571,13 @@ # @open: true if the guest has opened the virtio-serial port # # Since: 2.1 +# +# Example: +# +# <- { "event": "VSERPORT_CHANGE", +# "data": { "id": "channel0", "open": true }, +# "timestamp": { "seconds": 1401385907, "microseconds": 422329 } } +# ## { 'event': 'VSERPORT_CHANGE', 'data': { 'id': 'str', 'open': 'bool' } } -- GitLab