hw/virtio: Free VirtIOIOMMUPCI::vdev.reserved_regions[] on finalize()
Commit0be6bfac62
("qdev: Implement variable length array properties") added the DEFINE_PROP_ARRAY() macro with the following comment: * It is the responsibility of the device deinit code to free the * @_arrayfield memory. Commit8077b8e549
added: DEFINE_PROP_ARRAY("reserved-regions", VirtIOIOMMUPCI, vdev.nb_reserved_regions, vdev.reserved_regions, qdev_prop_reserved_region, ReservedRegion), but forgot to free the 'vdev.reserved_regions' array. Do it in the instance_finalize() handler. Cc: qemu-stable@nongnu.org Fixes:8077b8e549
("virtio-iommu-pci: Add array of Interval properties") # v5.1.0+ Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Eric Auger <eric.auger@redhat.com> Message-id: 20231121174051.63038-3-philmd@linaro.org Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
837053a7f4
commit
c9a4aa06df
@ -95,10 +95,18 @@ static void virtio_iommu_pci_instance_init(Object *obj)
|
|||||||
TYPE_VIRTIO_IOMMU);
|
TYPE_VIRTIO_IOMMU);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void virtio_iommu_pci_instance_finalize(Object *obj)
|
||||||
|
{
|
||||||
|
VirtIOIOMMUPCI *dev = VIRTIO_IOMMU_PCI(obj);
|
||||||
|
|
||||||
|
g_free(dev->vdev.prop_resv_regions);
|
||||||
|
}
|
||||||
|
|
||||||
static const VirtioPCIDeviceTypeInfo virtio_iommu_pci_info = {
|
static const VirtioPCIDeviceTypeInfo virtio_iommu_pci_info = {
|
||||||
.generic_name = TYPE_VIRTIO_IOMMU_PCI,
|
.generic_name = TYPE_VIRTIO_IOMMU_PCI,
|
||||||
.instance_size = sizeof(VirtIOIOMMUPCI),
|
.instance_size = sizeof(VirtIOIOMMUPCI),
|
||||||
.instance_init = virtio_iommu_pci_instance_init,
|
.instance_init = virtio_iommu_pci_instance_init,
|
||||||
|
.instance_finalize = virtio_iommu_pci_instance_finalize,
|
||||||
.class_init = virtio_iommu_pci_class_init,
|
.class_init = virtio_iommu_pci_class_init,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user