diff options
| author | Jan Kiszka <jan.kiszka@siemens.com> | 2012-05-15 20:09:56 -0300 |
|---|---|---|
| committer | Michael S. Tsirkin <mst@redhat.com> | 2012-06-07 17:19:00 +0300 |
| commit | cbd2d4342b3d42ab33baa99f5b7a23491b5692f2 (patch) | |
| tree | 34edef8be5a550587e9bae0c27d835d35bad1919 /hw/ivshmem.c | |
| parent | 520064c8b15504fb75babce7be6b5800b54ec490 (diff) | |
| download | focaccia-qemu-cbd2d4342b3d42ab33baa99f5b7a23491b5692f2.tar.gz focaccia-qemu-cbd2d4342b3d42ab33baa99f5b7a23491b5692f2.zip | |
msi: Invoke msi/msix_reset from PCI core
There is no point in pushing this burden to the devices, they tend to forget to call them (like intel-hda, ahci, xhci did). Instead, reset functions are now called from pci_device_reset. They do nothing if MSI/MSI-X is not in use. CC: Alexander Graf <agraf@suse.de> CC: Gerd Hoffmann <kraxel@redhat.com> CC: Isaku Yamahata <yamahata@valinux.co.jp> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/ivshmem.c')
| -rw-r--r-- | hw/ivshmem.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/hw/ivshmem.c b/hw/ivshmem.c index d48e5f9906..05559b639c 100644 --- a/hw/ivshmem.c +++ b/hw/ivshmem.c @@ -530,7 +530,6 @@ static void ivshmem_reset(DeviceState *d) IVShmemState *s = DO_UPCAST(IVShmemState, dev.qdev, d); s->intrstatus = 0; - msix_reset(&s->dev); ivshmem_use_msix(s); return; } |