提交 57c6db2e 编写于 作者: I Isaku Yamahata 提交者: Michael S. Tsirkin

msix: clear not only INTA, but all INTx when MSI-X is enabled.

clear not only INTA, but all INTx when MSI-X is enabled.
Signed-off-by: NIsaku Yamahata <yamahata@valinux.co.jp>
Signed-off-by: NMichael S. Tsirkin <mst@redhat.com>
上级 92ba5f51
...@@ -158,6 +158,7 @@ void msix_write_config(PCIDevice *dev, uint32_t addr, ...@@ -158,6 +158,7 @@ void msix_write_config(PCIDevice *dev, uint32_t addr,
{ {
unsigned enable_pos = dev->msix_cap + MSIX_CONTROL_OFFSET; unsigned enable_pos = dev->msix_cap + MSIX_CONTROL_OFFSET;
int vector; int vector;
int i;
if (!range_covers_byte(addr, len, enable_pos)) { if (!range_covers_byte(addr, len, enable_pos)) {
return; return;
...@@ -167,7 +168,9 @@ void msix_write_config(PCIDevice *dev, uint32_t addr, ...@@ -167,7 +168,9 @@ void msix_write_config(PCIDevice *dev, uint32_t addr,
return; 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)) { if (msix_function_masked(dev)) {
return; return;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册