diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2012-03-28 18:12:47 +0200 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2012-06-18 15:14:37 +0200 |
commit | bce544740a87cac1636f01c8a28502fec1694b3d (patch) | |
tree | 9967a3c299edcb4c32febe4019d7a98c5b205df2 /hw/ide/qdev.c | |
parent | 3cb75a7cba7e808c0ae007e4d86750849642304e (diff) | |
download | qemu-bce544740a87cac1636f01c8a28502fec1694b3d.zip qemu-bce544740a87cac1636f01c8a28502fec1694b3d.tar.gz qemu-bce544740a87cac1636f01c8a28502fec1694b3d.tar.bz2 |
qdev: Move bus properties to abstract superclasses
In qdev, each bus in practice identified an abstract superclass, but
this was mostly hidden. In QOM, instead, these abstract classes are
explicit so we can move bus properties there.
All bus property walks are removed, and all device property walks
are changed to look along the class hierarchy instead.
We would have duplicates if class A defines some properties and its
subclass B does not define any, because class_b->props will be
left equal to class_a->props.
The solution here is to reintroduce the class_base_init TypeInfo
callback, that was present in one of the early QOM versions but
removed (on my request...) before committing.
This breaks global bus properties, an obscure feature when used
with the command-line which is actually useful and used when used by
backwards-compatible machine types. So this patch also adjusts the
global bus properties in hw/pc_piix.c to refer to the abstract class.
Globals and other properties must be modified in the same patch to
avoid complications related to initialization ordering.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'hw/ide/qdev.c')
-rw-r--r-- | hw/ide/qdev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ide/qdev.c b/hw/ide/qdev.c index b67df3d..a91e878 100644 --- a/hw/ide/qdev.c +++ b/hw/ide/qdev.c @@ -36,7 +36,6 @@ static struct BusInfo ide_bus_info = { .name = "IDE", .size = sizeof(IDEBus), .get_fw_dev_path = idebus_get_fw_dev_path, - .props = ide_props, }; void ide_bus_new(IDEBus *idebus, DeviceState *dev, int bus_id) @@ -251,6 +250,7 @@ static void ide_device_class_init(ObjectClass *klass, void *data) DeviceClass *k = DEVICE_CLASS(klass); k->init = ide_qdev_init; k->bus_info = &ide_bus_info; + k->props = ide_props; } static TypeInfo ide_device_type_info = { |