diff options
author | Igor Mammedov <imammedo@redhat.com> | 2014-06-16 19:12:28 +0200 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2014-06-19 18:44:22 +0300 |
commit | 02419bcb3f896fc42b50b2b04e2938365b8f7350 (patch) | |
tree | 63d6866effd5193267967a474e476fd96c6088bf /qmp-commands.hx | |
parent | 43f50410088847376c8b146e817a9042bd2a5f36 (diff) |
qmp: add query-acpi-ospm-status command
... to get ACPI OSPM status reported by ACPI devices
via _OST method.
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 'qmp-commands.hx')
-rw-r--r-- | qmp-commands.hx | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/qmp-commands.hx b/qmp-commands.hx index 81054d0b1b..e4a1c80434 100644 --- a/qmp-commands.hx +++ b/qmp-commands.hx @@ -3639,3 +3639,25 @@ Example: "type": "dimm" } ] } EQMP + + { + .name = "query-acpi-ospm-status", + .args_type = "", + .mhandler.cmd_new = qmp_marshal_input_query_acpi_ospm_status, + }, + +SQMP +@query-acpi-ospm-status +-------------------- + +Return list of ACPIOSTInfo for devices that support status reporting +via ACPI _OST method. + +Example: +-> { "execute": "query-acpi-ospm-status" } +<- { "return": [ { "device": "d1", "slot": "0", "slot-type": "DIMM", "source": 1, "status": 0}, + { "slot": "1", "slot-type": "DIMM", "source": 0, "status": 0}, + { "slot": "2", "slot-type": "DIMM", "source": 0, "status": 0}, + { "slot": "3", "slot-type": "DIMM", "source": 0, "status": 0} + ]} +EQMP |