On 26/09/2018 17:33, Sameeh Jubran wrote: > > I have used the function "pci_qdev_find_device" to find a device using > it's id. This is a virtio device and I'm trying to convert it to > VirtIODevice. > > What's the best way to do this? Simply converting it to DeviceState > doesn't work and I think I should access the underlying virtio pci bus > and through it access the virtio-device, but couldn't find any elegant > way of doing so.
virtio_pci_ioeventfd_assign does something similar. You need to first cast the PCIDevice* pci_dev to a VirtIOPCIProxy*, and then you can get the virtio bus and device: VirtIOPCIProxy *proxy = VIRTIO_PCI(pci_dev); VirtIODevice *vdev = virtio_bus_get_device(&proxy->bus); Paolo