From dfe47e7029e117f65a14c0948021654f7f7d5d05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20F=C3=A4rber?= Date: Thu, 5 Apr 2012 13:21:46 +0200 Subject: qom: Refine container_get() to allow using a custom root MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Specify the root to search from as argument. This avoids hardcoding "/machine" in some places and makes it more flexible. Signed-off-by: Andreas Färber Cc: Paolo Bonzini Cc: Anthony Liguori Signed-off-by: Anthony Liguori --- qom/container.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'qom') diff --git a/qom/container.c b/qom/container.c index 67e9e8a6f8..c9940ab2e1 100644 --- a/qom/container.c +++ b/qom/container.c @@ -25,7 +25,7 @@ static void container_register_types(void) type_register_static(&container_info); } -Object *container_get(const char *path) +Object *container_get(Object *root, const char *path) { Object *obj, *child; gchar **parts; @@ -33,7 +33,7 @@ Object *container_get(const char *path) parts = g_strsplit(path, "/", 0); assert(parts != NULL && parts[0] != NULL && !parts[0][0]); - obj = object_get_root(); + obj = root; for (i = 1; parts[i] != NULL; i++, obj = child) { child = object_resolve_path_component(obj, parts[i]); -- cgit v1.2.3