summaryrefslogtreecommitdiff
path: root/hw/qdev.c
diff options
context:
space:
mode:
authorAnthony Liguori <aliguori@us.ibm.com>2011-12-12 14:29:28 -0600
committerAnthony Liguori <aliguori@us.ibm.com>2011-12-15 09:20:47 -0600
commita10f07a7d0827eeef920c16b500b50030b7ff651 (patch)
treea44dcb4da7c63ea80b9866b7f1b87aa86263d34d /hw/qdev.c
parenta5296ca9df745d8af319282ab5d85439c211bb10 (diff)
downloadqemu-a10f07a7d0827eeef920c16b500b50030b7ff651.tar.gz
qom: introduce root device
This is based on Jan's suggestion for how to do unique naming. The root device is the root of composition. All devices are reachable via child<> links from this device. Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/qdev.c')
-rw-r--r--hw/qdev.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/hw/qdev.c b/hw/qdev.c
index 6f77af91ef..bb0b9f7d6a 100644
--- a/hw/qdev.c
+++ b/hw/qdev.c
@@ -1161,3 +1161,15 @@ void qdev_property_add_legacy(DeviceState *dev, Property *prop,
g_free(type);
}
+
+DeviceState *qdev_get_root(void)
+{
+ static DeviceState *qdev_root;
+
+ if (!qdev_root) {
+ qdev_root = qdev_create(NULL, "container");
+ qdev_init_nofail(qdev_root);
+ }
+
+ return qdev_root;
+}