diff options
| author | Peter Maydell | 2018-09-25 16:49:25 +0200 |
|---|---|---|
| committer | Peter Maydell | 2018-09-25 16:49:25 +0200 |
| commit | 0a736f7ab83df26dbe5421bb3d1f7892def05dee (patch) | |
| tree | 6df73845d8291cf9c23cdfe4b48c1d3fa5e5a6f5 /qapi | |
| parent | Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20180925-... (diff) | |
| parent | qmp, hmp: add PCI subsystem id and vendor id to PCI info (diff) | |
| download | qemu-0a736f7ab83df26dbe5421bb3d1f7892def05dee.tar.gz qemu-0a736f7ab83df26dbe5421bb3d1f7892def05dee.tar.xz qemu-0a736f7ab83df26dbe5421bb3d1f7892def05dee.zip | |
Merge remote-tracking branch 'remotes/dgilbert/tags/pull-hmp-20180925' into staging
HMP pull 2018-09-25
# gpg: Signature made Tue 25 Sep 2018 15:11:09 BST
# gpg: using RSA key 0516331EBC5BFDE7
# gpg: Good signature from "Dr. David Alan Gilbert (RH2) <dgilbert@redhat.com>"
# Primary key fingerprint: 45F5 C71B 4A0C B7FB 977A 9FA9 0516 331E BC5B FDE7
* remotes/dgilbert/tags/pull-hmp-20180925:
qmp, hmp: add PCI subsystem id and vendor id to PCI info
hmp: fix migrate status timer leak
monitor: print message when using 'help' with an unknown command
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'qapi')
| -rw-r--r-- | qapi/misc.json | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/qapi/misc.json b/qapi/misc.json index d450cfef21..ada9af5add 100644 --- a/qapi/misc.json +++ b/qapi/misc.json @@ -832,10 +832,15 @@ # # @vendor: the PCI vendor id # +# @subsystem: the PCI subsystem id (since 3.1) +# +# @subsystem-vendor: the PCI subsystem vendor id (since 3.1) +# # Since: 2.4 ## { 'struct': 'PciDeviceId', - 'data': {'device': 'int', 'vendor': 'int'} } + 'data': {'device': 'int', 'vendor': 'int', 'subsystem': 'int', + 'subsystem-vendor': 'int'} } ## # @PciDeviceInfo: |
