summary refs log tree commit diff stats
path: root/hw/virtio/virtio-pci.c
diff options
context:
space:
mode:
authorCornelia Huck <cohuck@redhat.com>2020-08-24 14:20:51 +0200
committerEduardo Habkost <ehabkost@redhat.com>2020-09-02 07:29:26 -0400
commit74ded8b487a074aff89a642630c0402053f80d1b (patch)
tree2fa307536cca6539119d9272b376ac21e63d0e46 /hw/virtio/virtio-pci.c
parent0a48666a31575f1dc4e4c63f2edaa29c16923fb7 (diff)
downloadfocaccia-qemu-74ded8b487a074aff89a642630c0402053f80d1b.tar.gz
focaccia-qemu-74ded8b487a074aff89a642630c0402053f80d1b.zip
virtio: add Virtio*BusClass sizes
Both VirtioPCIBusClass and VirtioCcwBusClass are typedefs of
VirtioBusClass, but set .class_size in the TypeInfo anyway
to be safe if that changes in the future.

Reported-by: Eduardo Habkost <ehabkost@redhat.com>
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
Reviewed-by: Halil Pasic <pasic@linux.ibm.com>
Message-Id: <20200824122051.99432-1-cohuck@redhat.com>
Diffstat (limited to 'hw/virtio/virtio-pci.c')
-rw-r--r--hw/virtio/virtio-pci.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/virtio/virtio-pci.c b/hw/virtio/virtio-pci.c
index fc69570dcc..5bc769f685 100644
--- a/hw/virtio/virtio-pci.c
+++ b/hw/virtio/virtio-pci.c
@@ -2133,6 +2133,7 @@ static const TypeInfo virtio_pci_bus_info = {
     .name          = TYPE_VIRTIO_PCI_BUS,
     .parent        = TYPE_VIRTIO_BUS,
     .instance_size = sizeof(VirtioPCIBusState),
+    .class_size    = sizeof(VirtioPCIBusClass),
     .class_init    = virtio_pci_bus_class_init,
 };