diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2018-11-26 22:04:32 +0400 |
---|---|---|
committer | Marc-André Lureau <marcandre.lureau@redhat.com> | 2019-01-07 16:18:41 +0400 |
commit | ea9ce8934c5d2cc8925359a6d8d45eb829a9f27f (patch) | |
tree | 927bdc1c7297f53a40ea456884ebde99e60c39c3 /vl.c | |
parent | e59dbbac0364344a3ad84c3497a98c56003d3fb8 (diff) |
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 'vl.c')
-rw-r--r-- | vl.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -2996,7 +2996,6 @@ static void user_register_global_props(void) */ static void register_global_properties(MachineState *ms) { - accel_register_compat_props(ms->accelerator); machine_register_compat_props(ms); user_register_global_props(); } |