diff options
author | Igor Mammedov <imammedo@redhat.com> | 2014-06-23 15:26:57 +0200 |
---|---|---|
committer | Luiz Capitulino <lcapitulino@redhat.com> | 2014-06-23 11:12:28 -0400 |
commit | 5f41fbba903fc4e55b94c54cd97ea2d904371351 (patch) | |
tree | 686961cab813f28a2abd2a1cf017080616ae97e0 /qapi-event.json | |
parent | 7cfadb6b5291765d360137ac5cab78729bde0272 (diff) |
qmp: convert ACPI_DEVICE_OST event
... using new QAPI event infrastructure
Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'qapi-event.json')
-rw-r--r-- | qapi-event.json | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/qapi-event.json b/qapi-event.json index 1e2354900f..5188a723c1 100644 --- a/qapi-event.json +++ b/qapi-event.json @@ -241,3 +241,15 @@ # Since: 1.3 ## { 'event': 'SPICE_MIGRATE_COMPLETED' } + +## +# @ACPI_DEVICE_OST +# +# Emitted when guest executes ACPI _OST method. +# +# Since: 2.1 +# +# @info: ACPIOSTInfo type as described in qapi-schema.json +## +{ 'event': 'ACPI_DEVICE_OST', + 'data': { 'info': 'ACPIOSTInfo' } } |