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/object.h | |
| parent | 8b90f1c5aca6cfabe97a567150560d06485182fa (diff) | |
| download | focaccia-qemu-1fff3c206f320104e929b22e6b9e82fc6e4c2ae6.tar.gz focaccia-qemu-1fff3c206f320104e929b22e6b9e82fc6e4c2ae6.zip | |
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/object.h')
| -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 128d00c77f..230b18fe14 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); /** |