diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2019-11-13 13:33:44 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2019-12-17 19:32:26 +0100 |
commit | 1fff3c206f320104e929b22e6b9e82fc6e4c2ae6 (patch) | |
tree | 9f335318a02337239dab92056c2b1f8b4a83e361 /include/qom | |
parent | 8b90f1c5aca6cfabe97a567150560d06485182fa (diff) | |
download | qemu-1fff3c206f320104e929b22e6b9e82fc6e4c2ae6.zip qemu-1fff3c206f320104e929b22e6b9e82fc6e4c2ae6.tar.gz qemu-1fff3c206f320104e929b22e6b9e82fc6e4c2ae6.tar.bz2 |
qom: introduce object_register_sugar_prop
Similar to the existing "-rtc driftfix" option, we will convert some
legacy "-machine" command line options to global properties on accelerators.
Because accelerators are not devices, we cannot use qdev_prop_register_global.
Instead, provide a slot in the generic object_compat_props arrays for
command line syntactic sugar.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/qom')
-rw-r--r-- | include/qom/object.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/qom/object.h b/include/qom/object.h index 128d00c..230b18f 100644 --- a/include/qom/object.h +++ b/include/qom/object.h @@ -679,6 +679,7 @@ void object_apply_global_props(Object *obj, const GPtrArray *props, Error **errp); void object_set_machine_compat_props(GPtrArray *compat_props); void object_set_accelerator_compat_props(GPtrArray *compat_props); +void object_register_sugar_prop(const char *driver, const char *prop, const char *value); void object_apply_compat_props(Object *obj); /** |