diff options
author | Eduardo Habkost <ehabkost@redhat.com> | 2015-05-08 16:04:22 -0300 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2015-05-14 17:25:46 +0200 |
commit | 58f88d4b7e9e5578b8dd2c5acfe555b85b35af88 (patch) | |
tree | 80626062506fc7d5b9dba8516f545f18489643bf /qmp-commands.hx | |
parent | 1eeace9c237a729d11c7acd7c0338ab4562af637 (diff) | |
download | hqemu-58f88d4b7e9e5578b8dd2c5acfe555b85b35af88.zip hqemu-58f88d4b7e9e5578b8dd2c5acfe555b85b35af88.tar.gz |
qmp: Add qom_path field to query-cpus command
This will allow clients to query additional information directly using
qom-get on the CPU objects.
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
Reviewed-by: Andreas Färber <afaerber@suse.de>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'qmp-commands.hx')
-rw-r--r-- | qmp-commands.hx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/qmp-commands.hx b/qmp-commands.hx index 7506774..14e109e 100644 --- a/qmp-commands.hx +++ b/qmp-commands.hx @@ -2569,6 +2569,7 @@ Return a json-array. Each CPU is represented by a json-object, which contains: - "CPU": CPU index (json-int) - "current": true if this is the current CPU, false otherwise (json-bool) - "halted": true if the cpu is halted, false otherwise (json-bool) +- "qom_path": path to the CPU object in the QOM tree (json-str) - Current program counter. The key's name depends on the architecture: "pc": i386/x86_64 (json-int) "nip": PPC (json-int) @@ -2585,14 +2586,16 @@ Example: "CPU":0, "current":true, "halted":false, - "pc":3227107138 + "qom_path":"/machine/unattached/device[0]", + "pc":3227107138, "thread_id":3134 }, { "CPU":1, "current":false, "halted":true, - "pc":7108165 + "qom_path":"/machine/unattached/device[2]", + "pc":7108165, "thread_id":3135 } ] |