mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 15:53:54 -06:00
pci: Use bus master address space for delivering MSI/MSI-X messages
The spec says (and real HW confirms this) that, if the bus master bit is 0, the device will not generate any PCI accesses. MSI and MSI-X messages fall among these, so we should use the corresponding address space to deliver them. This will prevent delivery if bus master support is disabled. Cc: qemu-stable@nongnu.org Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
2d591ce2ae
commit
cc943c36fa
2 changed files with 2 additions and 2 deletions
|
@ -439,7 +439,7 @@ void msix_notify(PCIDevice *dev, unsigned vector)
|
|||
|
||||
msg = msix_get_message(dev, vector);
|
||||
|
||||
stl_le_phys(&address_space_memory, msg.address, msg.data);
|
||||
stl_le_phys(&dev->bus_master_as, msg.address, msg.data);
|
||||
}
|
||||
|
||||
void msix_reset(PCIDevice *dev)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue