[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v3 5/5] pci: query command extension to check the bu
From: |
Venu Busireddy |
Subject: |
[Qemu-devel] [PATCH v3 5/5] pci: query command extension to check the bus master enabling status of the failover-primary device |
Date: |
Mon, 7 Jan 2019 17:29:44 -0500 |
From: Si-Wei Liu <address@hidden>
Signed-off-by: Si-Wei Liu <address@hidden>
Signed-off-by: Venu Busireddy <address@hidden>
---
hmp.c | 5 +++++
hw/pci/pci.c | 5 +++++
qapi/misc.json | 5 ++++-
3 files changed, 14 insertions(+), 1 deletion(-)
diff --git a/hmp.c b/hmp.c
index 7828f93..7a75c93 100644
--- a/hmp.c
+++ b/hmp.c
@@ -890,6 +890,11 @@ static void hmp_info_pci_device(Monitor *mon, const
PciDeviceInfo *dev)
}
}
+ if (dev->has_failover_status) {
+ monitor_printf(mon, " Failover primary, bus master %s.\n",
+ dev->failover_status ? "enabled" : "disabled");
+ }
+
monitor_printf(mon, " id \"%s\"\n", dev->qdev_id);
if (dev->has_pci_bridge) {
diff --git a/hw/pci/pci.c b/hw/pci/pci.c
index 56b13b3..9da49fd 100644
--- a/hw/pci/pci.c
+++ b/hw/pci/pci.c
@@ -1761,6 +1761,11 @@ static PciDeviceInfo *qmp_query_pci_device(PCIDevice
*dev, PCIBus *bus,
pci_get_word(dev->config + PCI_CB_SUBSYSTEM_VENDOR_ID);
}
+ if (dev->failover_primary) {
+ info->has_failover_status = true;
+ info->failover_status = dev->bus_master_enable_region.enabled;
+ }
+
return info;
}
diff --git a/qapi/misc.json b/qapi/misc.json
index 6c1c5c0..05f003e 100644
--- a/qapi/misc.json
+++ b/qapi/misc.json
@@ -865,6 +865,9 @@
#
# @regions: a list of the PCI I/O regions associated with the device
#
+# @failover_status: if 'failover-primary' property is 'true', true if PCI
+# bus master bit on the device is enabled
+#
# Notes: the contents of @class_info.desc are not stable and should only be
# treated as informational.
#
@@ -874,7 +877,7 @@
'data': {'bus': 'int', 'slot': 'int', 'function': 'int',
'class_info': 'PciDeviceClass', 'id': 'PciDeviceId',
'*irq': 'int', 'qdev_id': 'str', '*pci_bridge': 'PciBridgeInfo',
- 'regions': ['PciMemoryRegion']} }
+ 'regions': ['PciMemoryRegion'], '*failover_status': 'bool'} }
##
# @PciInfo:
- [Qemu-devel] [PATCH v3 0/5] Support for datapath switching during live migration, Venu Busireddy, 2019/01/07
- [Qemu-devel] [PATCH v3 1/5] virtio_net: Add VIRTIO_NET_F_STANDBY feature bit., Venu Busireddy, 2019/01/07
- Re: [Qemu-devel] [PATCH v3 1/5] virtio_net: Add VIRTIO_NET_F_STANDBY feature bit., Dongli Zhang, 2019/01/08
- Re: [Qemu-devel] [PATCH v3 1/5] virtio_net: Add VIRTIO_NET_F_STANDBY feature bit., Venu Busireddy, 2019/01/08
- Re: [Qemu-devel] [PATCH v3 1/5] virtio_net: Add VIRTIO_NET_F_STANDBY feature bit., Dongli Zhang, 2019/01/08
- Re: [Qemu-devel] [PATCH v3 1/5] virtio_net: Add VIRTIO_NET_F_STANDBY feature bit., Samudrala, Sridhar, 2019/01/08
- Re: [Qemu-devel] [PATCH v3 1/5] virtio_net: Add VIRTIO_NET_F_STANDBY feature bit., Dongli Zhang, 2019/01/08
- Re: [Qemu-devel] [PATCH v3 1/5] virtio_net: Add VIRTIO_NET_F_STANDBY feature bit., Michael S. Tsirkin, 2019/01/08
[Qemu-devel] [PATCH v3 5/5] pci: query command extension to check the bus master enabling status of the failover-primary device,
Venu Busireddy <=
[Qemu-devel] [PATCH v3 3/5] virtio_net: Add a query command for FAILOVER_STANDBY_CHANGED event., Venu Busireddy, 2019/01/07
[Qemu-devel] [PATCH v3 2/5] virtio_net: Add support for "Data Path Switching" during Live Migration., Venu Busireddy, 2019/01/07
[Qemu-devel] [PATCH v3 4/5] vfio-pci: Add FAILOVER_PRIMARY_CHANGED event to shorten downtime during failover, Venu Busireddy, 2019/01/07