Clean up msix vector usage state on load. Since guest might have control over it through the device, the device will have to load this state from file. Signed-off-by: Michael S. Tsirkin <mst@xxxxxxxxxx> --- hw/msix.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/hw/msix.c b/hw/msix.c index b67ea39..33549f5 100644 --- a/hw/msix.c +++ b/hw/msix.c @@ -301,6 +301,7 @@ void msix_load(PCIDevice *dev, QEMUFile *f) if (!dev->cap_present & QEMU_PCI_CAP_MSIX) return; + msix_free_irq_entries(dev); qemu_get_buffer(f, dev->msix_table_page, n * MSIX_ENTRY_SIZE); qemu_get_buffer(f, dev->msix_table_page + MSIX_PAGE_PENDING, (n + 7) / 8); } -- 1.6.2.2 -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html