diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2016-06-23 13:56:06 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2017-01-16 09:19:45 +0100 |
commit | 18b43003d4738f6ea3466ba1a70b0f25c23b0b02 (patch) | |
tree | bb8b7bc717fc9272659b0cb1fb2d9f6a2a6124f8 | |
parent | 22f9a094f854d8bfc19b47d2eef68328e7b89b5c (diff) | |
download | qemu-18b43003d4738f6ea3466ba1a70b0f25c23b0b02.zip qemu-18b43003d4738f6ea3466ba1a70b0f25c23b0b02.tar.gz qemu-18b43003d4738f6ea3466ba1a70b0f25c23b0b02.tar.bz2 |
qmp-commands: move 'query-acpi-ospm-status' doc to schema
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
-rw-r--r-- | docs/qmp-commands.txt | 14 | ||||
-rw-r--r-- | qapi-schema.json | 14 |
2 files changed, 12 insertions, 16 deletions
diff --git a/docs/qmp-commands.txt b/docs/qmp-commands.txt index 1e34523..c7e566c 100644 --- a/docs/qmp-commands.txt +++ b/docs/qmp-commands.txt @@ -1534,20 +1534,6 @@ Examples: <- { "return": {} } -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} - ]} - rtc-reset-reinjection --------------------- diff --git a/qapi-schema.json b/qapi-schema.json index 054e0c5..f7906f9 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -5697,10 +5697,20 @@ ## # @query-acpi-ospm-status: # -# Lists ACPI OSPM status of ACPI device objects, -# which might be reported via _OST method +# Return a list of ACPIOSTInfo for devices that support status +# reporting via ACPI _OST method. # # Since: 2.1 +# +# 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} +# ]} +# ## { 'command': 'query-acpi-ospm-status', 'returns': ['ACPIOSTInfo'] } |