diff options
author | Jan Kiszka | 2012-05-17 15:32:38 +0200 |
---|---|---|
committer | Avi Kivity | 2012-05-21 18:22:50 +0200 |
commit | cb697aaab9c1d8078721513a11cb1ce2729b9c92 (patch) | |
tree | 1b19040226f8ed9b03f601ad679636918d01942b | |
parent | kvm: Enable use of kvm_irqchip_in_kernel in hwlib code (diff) | |
download | qemu-cb697aaab9c1d8078721513a11cb1ce2729b9c92.tar.gz qemu-cb697aaab9c1d8078721513a11cb1ce2729b9c92.tar.xz qemu-cb697aaab9c1d8078721513a11cb1ce2729b9c92.zip |
msix: Add msix_nr_vectors_allocated
Analogously to msi_nr_vectors_allocated, add a service for MSI-X. Will
be used by the virtio-pci layer.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
-rw-r--r-- | hw/msix.c | 5 | ||||
-rw-r--r-- | hw/msix.h | 2 |
2 files changed, 7 insertions, 0 deletions
@@ -452,6 +452,11 @@ void msix_unuse_all_vectors(PCIDevice *dev) msix_free_irq_entries(dev); } +unsigned int msix_nr_vectors_allocated(const PCIDevice *dev) +{ + return dev->msix_entries_nr; +} + static int msix_set_notifier_for_vector(PCIDevice *dev, unsigned int vector) { MSIMessage msg; @@ -13,6 +13,8 @@ void msix_write_config(PCIDevice *pci_dev, uint32_t address, int msix_uninit(PCIDevice *d, MemoryRegion *bar); +unsigned int msix_nr_vectors_allocated(const PCIDevice *dev); + void msix_save(PCIDevice *dev, QEMUFile *f); void msix_load(PCIDevice *dev, QEMUFile *f); |