msix: clear not only INTA, but all INTx when MSI-X is enabled.
authorIsaku Yamahata <yamahata@valinux.co.jp>
Wed, 15 Sep 2010 05:38:26 +0000 (14:38 +0900)
committerMichael S. Tsirkin <mst@redhat.com>
Mon, 20 Sep 2010 18:15:19 +0000 (20:15 +0200)
clear not only INTA, but all INTx when MSI-X is enabled.

Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
hw/msix.c

index 7ce63eb..b202ff7 100644 (file)
--- a/hw/msix.c
+++ b/hw/msix.c
@@ -158,6 +158,7 @@ void msix_write_config(PCIDevice *dev, uint32_t addr,
 {
     unsigned enable_pos = dev->msix_cap + MSIX_CONTROL_OFFSET;
     int vector;
+    int i;
 
     if (!range_covers_byte(addr, len, enable_pos)) {
         return;
@@ -167,7 +168,9 @@ void msix_write_config(PCIDevice *dev, uint32_t addr,
         return;
     }
 
-    qemu_set_irq(dev->irq[0], 0);
+    for (i = 0; i < PCI_NUM_PINS; ++i) {
+        qemu_set_irq(dev->irq[i], 0);
+    }
 
     if (msix_function_masked(dev)) {
         return;