qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [RFC v9 15/18] vfio: do hot bus reset when do virtual secon


From: Chen Fan
Subject: [Qemu-devel] [RFC v9 15/18] vfio: do hot bus reset when do virtual secondary bus reset
Date: Tue, 9 Jun 2015 11:37:43 +0800

when do virtual secondary bus reset, the vfio device under
this bus need to do host bus reset to reset the device.
so add this case.

Signed-off-by: Chen Fan <address@hidden>
---
 hw/vfio/pci.c | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/hw/vfio/pci.c b/hw/vfio/pci.c
index 6507f39..655ac59 100644
--- a/hw/vfio/pci.c
+++ b/hw/vfio/pci.c
@@ -4239,6 +4239,15 @@ static void vfio_pci_reset(DeviceState *dev)
 
     vfio_pci_pre_reset(vdev);
 
+    if (vdev->needs_bus_reset) {
+        vdev->needs_bus_reset = false;
+        /* Avoid duplicate bus reset */
+        if (vdev->vbasedev.needs_reset) {
+            vfio_pci_hot_reset(vdev, false);
+        }
+        return;
+    }
+
     if (vdev->resetfn && !vdev->resetfn(vdev)) {
         goto post_reset;
     }
-- 
1.9.3




reply via email to

[Prev in Thread] Current Thread [Next in Thread]