diff options
author | Gerd Hoffmann | 2019-03-07 09:02:42 +0100 |
---|---|---|
committer | Gerd Hoffmann | 2019-03-11 08:04:12 +0100 |
commit | 8ea90ee690eb78bbe6644cae3a7eff857f8b4569 (patch) | |
tree | b321637b3e8ddd145a364a15d3a6a4f0373c15d8 /hw/virtio/virtio-pci.h | |
parent | Merge remote-tracking branch 'remotes/ericb/tags/pull-nbd-2019-03-08' into st... (diff) | |
download | qemu-8ea90ee690eb78bbe6644cae3a7eff857f8b4569.tar.gz qemu-8ea90ee690eb78bbe6644cae3a7eff857f8b4569.tar.xz qemu-8ea90ee690eb78bbe6644cae3a7eff857f8b4569.zip |
virtio: add class_size to VirtioPCIDeviceTypeInfo
Needed when VirtioPCIClass subclasses have their own
class struct with some extra fields.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Message-id: 20190307080244.9011-2-kraxel@redhat.com
Diffstat (limited to 'hw/virtio/virtio-pci.h')
-rw-r--r-- | hw/virtio/virtio-pci.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/virtio/virtio-pci.h b/hw/virtio/virtio-pci.h index bd223a6e3b..18581854ca 100644 --- a/hw/virtio/virtio-pci.h +++ b/hw/virtio/virtio-pci.h @@ -230,6 +230,7 @@ typedef struct VirtioPCIDeviceTypeInfo { /* Same as TypeInfo fields: */ size_t instance_size; + size_t class_size; void (*instance_init)(Object *obj); void (*class_init)(ObjectClass *klass, void *data); } VirtioPCIDeviceTypeInfo; |