diff options
author | Marc-André Lureau | 2018-11-26 19:04:32 +0100 |
---|---|---|
committer | Marc-André Lureau | 2019-01-07 13:18:41 +0100 |
commit | ea9ce8934c5d2cc8925359a6d8d45eb829a9f27f (patch) | |
tree | 927bdc1c7297f53a40ea456884ebde99e60c39c3 /hw/core | |
parent | Merge remote-tracking branch 'remotes/philmd/tags/fw_cfg-20190104-pull-reques... (diff) | |
download | qemu-ea9ce8934c5d2cc8925359a6d8d45eb829a9f27f.tar.gz qemu-ea9ce8934c5d2cc8925359a6d8d45eb829a9f27f.tar.xz qemu-ea9ce8934c5d2cc8925359a6d8d45eb829a9f27f.zip |
hw: apply accel compat properties without touching globals
Instead of registering compat properties as globals, let's keep them
in their own array, to avoid mixing with user globals.
Introduce object_apply_global_props() function, to apply compatibility
properties from a GPtrArray.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
Reviewed-by: Cornelia Huck <cohuck@redhat.com>
Acked-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'hw/core')
-rw-r--r-- | hw/core/qdev.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/hw/core/qdev.c b/hw/core/qdev.c index 6b3cc55b27..53b507164f 100644 --- a/hw/core/qdev.c +++ b/hw/core/qdev.c @@ -972,6 +972,15 @@ static void device_initfn(Object *obj) static void device_post_init(Object *obj) { + if (object_dynamic_cast(qdev_get_machine(), TYPE_MACHINE)) { + MachineState *m = MACHINE(qdev_get_machine()); + AccelClass *ac = ACCEL_GET_CLASS(m->accelerator); + + if (ac->compat_props) { + object_apply_global_props(obj, ac->compat_props, &error_abort); + } + } + qdev_prop_set_globals(DEVICE(obj)); } |