[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 14/14] spapr_pci: emit hotplug add/remove events dur
From: |
Michael Roth |
Subject: |
[Qemu-devel] [PATCH 14/14] spapr_pci: emit hotplug add/remove events during hotplug |
Date: |
Wed, 4 Dec 2013 19:19:54 -0600 |
From: Tyrel Datwyler <address@hidden>
This uses extension of existing EPOW interrupt/event mechanism
to notify userspace tools like librtas/drmgr to handle
in-guest configuration/cleanup operations in response to
device_add/device_del.
Userspace tools that don't implement this extension will need
to be run manually in response/advance of device_add/device_del,
respectively.
Signed-off-by: Tyrel Datwyler <address@hidden>
Signed-off-by: Michael Roth <address@hidden>
---
hw/ppc/spapr_pci.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/hw/ppc/spapr_pci.c b/hw/ppc/spapr_pci.c
index 9284acd..77cd6a8 100644
--- a/hw/ppc/spapr_pci.c
+++ b/hw/ppc/spapr_pci.c
@@ -1121,14 +1121,18 @@ static void spapr_device_hotplug_remove(DeviceState
*qdev, PCIDevice *dev)
static int spapr_device_hotplug(DeviceState *qdev, PCIDevice *dev,
PCIHotplugState state)
{
+ int slot = PCI_SLOT(dev->devfn);
+
if (state == PCI_COLDPLUG_ENABLED) {
return 0;
}
if (state == PCI_HOTPLUG_ENABLED) {
spapr_device_hotplug_add(qdev, dev);
+ spapr_pci_hotplug_add_event(qdev, slot);
} else {
spapr_device_hotplug_remove(qdev, dev);
+ spapr_pci_hotplug_remove_event(qdev, slot);
}
return 0;
--
1.7.9.5
- [Qemu-devel] [PATCH 12/14] spapr_events: re-use EPOW event infrastructure for hotplug events, (continued)
- [Qemu-devel] [PATCH 12/14] spapr_events: re-use EPOW event infrastructure for hotplug events, Michael Roth, 2013/12/04
- [Qemu-devel] [PATCH 05/14] spapr: populate DRC entries for root dt node, Michael Roth, 2013/12/04
- [Qemu-devel] [PATCH 06/14] spapr_pci: populate DRC dt entries for PHBs, Michael Roth, 2013/12/04
- [Qemu-devel] [PATCH 08/14] memory: add memory_region_find_subregion, Michael Roth, 2013/12/04
- [Qemu-devel] [PATCH 09/14] pci: make pci_bar useable outside pci.c, Michael Roth, 2013/12/04
- [Qemu-devel] [PATCH 13/14] spapr_events: event-scan RTAS interface, Michael Roth, 2013/12/04
- [Qemu-devel] [PATCH 02/14] spapr_pci: add get/set-power-level RTAS interfaces, Michael Roth, 2013/12/04
- [Qemu-devel] [PATCH 07/14] spapr: add helper to retrieve a PHB/device DrcEntry, Michael Roth, 2013/12/04
- [Qemu-devel] [PATCH 14/14] spapr_pci: emit hotplug add/remove events during hotplug,
Michael Roth <=
- [Qemu-devel] [PATCH 11/14] spapr_pci: enable basic hotplug operations, Michael Roth, 2013/12/04
- [Qemu-devel] [PATCH 10/14] pci: allow 0 address for PCI IO regions, Michael Roth, 2013/12/04