diff options
author | Igor Mammedov <imammedo@redhat.com> | 2014-06-16 19:12:29 +0200 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2014-06-19 18:44:22 +0300 |
commit | 02edd407f3f1a1c3aaf5247d131735cf71657d8b (patch) | |
tree | 84f933faab0ea243e6c4e4bf6d5c5837c4f9d722 /docs/qmp | |
parent | 02419bcb3f896fc42b50b2b04e2938365b8f7350 (diff) | |
download | qemu-02edd407f3f1a1c3aaf5247d131735cf71657d8b.zip |
qmp: add ACPI_DEVICE_OST event handling
emits event when ACPI OSPM evaluates _OST method
of ACPI device.
Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Acked-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'docs/qmp')
-rw-r--r-- | docs/qmp/qmp-events.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/qmp/qmp-events.txt b/docs/qmp/qmp-events.txt index 145402e078..019db53ec8 100644 --- a/docs/qmp/qmp-events.txt +++ b/docs/qmp/qmp-events.txt @@ -1,6 +1,16 @@ QEMU Machine Protocol Events ============================ +ACPI_DEVICE_OST +--------------- + +Emitted when guest executes ACPI _OST method. + + - data: ACPIOSTInfo type as described in qapi-schema.json + +{ "event": "ACPI_DEVICE_OST", + "data": { "device": "d1", "slot": "0", "slot-type": "DIMM", "source": 1, "status": 0 } } + BALLOON_CHANGE -------------- |