diff options
author | Daniel P. Berrange <berrange@redhat.com> | 2015-05-13 17:14:05 +0100 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2015-06-19 18:40:00 +0200 |
commit | bc2256c4ae86308a1521c89456b599d441119418 (patch) | |
tree | 8a9a2cb0a8d570459730143e3326ea0572054f93 /iothread.c | |
parent | f08f9271bfe3f19a5eb3d7a2f48532065304d5c8 (diff) | |
download | qemu-bc2256c4ae86308a1521c89456b599d441119418.tar.gz qemu-bc2256c4ae86308a1521c89456b599d441119418.tar.bz2 qemu-bc2256c4ae86308a1521c89456b599d441119418.zip |
qom: Add helper function for getting user objects root
Add object_get_objects_root() function which is a convenience for
obtaining the Object * located at /objects in the object
composition tree. Convert existing code over to use the new
API where appropriate.
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'iothread.c')
-rw-r--r-- | iothread.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/iothread.c b/iothread.c index 878a594ef4..6d2a33faf9 100644 --- a/iothread.c +++ b/iothread.c @@ -19,8 +19,6 @@ #include "qmp-commands.h" #include "qemu/error-report.h" -#define IOTHREADS_PATH "/objects" - typedef ObjectClass IOThreadClass; #define IOTHREAD_GET_CLASS(obj) \ @@ -160,7 +158,7 @@ IOThreadInfoList *qmp_query_iothreads(Error **errp) { IOThreadInfoList *head = NULL; IOThreadInfoList **prev = &head; - Object *container = container_get(object_get_root(), IOTHREADS_PATH); + Object *container = object_get_objects_root(); object_child_foreach(container, query_one_iothread, &prev); return head; |