diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2015-05-05 18:29:00 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2015-06-05 17:36:39 +0200 |
commit | fb9e7e334b54350e8e3b62bd7892b78f63a9d848 (patch) | |
tree | badff9234c77d6ee7e0355b4c65bea2f4d742de6 /qom/object.c | |
parent | 3751d7c43f795b45ffdb9429cfb09c6beea55c68 (diff) | |
download | qemu-fb9e7e334b54350e8e3b62bd7892b78f63a9d848.zip qemu-fb9e7e334b54350e8e3b62bd7892b78f63a9d848.tar.gz qemu-fb9e7e334b54350e8e3b62bd7892b78f63a9d848.tar.bz2 |
qom: add object_property_add_const_link
Suggested-by: Eduardo Habkost <ehabkost@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'qom/object.c')
-rw-r--r-- | qom/object.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/qom/object.c b/qom/object.c index b8dff43..96abd34 100644 --- a/qom/object.c +++ b/qom/object.c @@ -1266,6 +1266,22 @@ out: g_free(full_type); } +void object_property_add_const_link(Object *obj, const char *name, + Object *target, Error **errp) +{ + char *link_type; + ObjectProperty *op; + + link_type = g_strdup_printf("link<%s>", object_get_typename(target)); + op = object_property_add(obj, name, link_type, + object_get_child_property, NULL, + NULL, target, errp); + if (op != NULL) { + op->resolve = object_resolve_child_property; + } + g_free(link_type); +} + gchar *object_get_canonical_path_component(Object *obj) { ObjectProperty *prop = NULL; |