---
blockdev.c | 8 ++++++++
qapi-schema.json | 32 ++++++++++++++++++++++++++++++++
2 files changed, 40 insertions(+)
diff --git a/blockdev.c b/blockdev.c
index a474bb5..824e718 100644
--- a/blockdev.c
+++ b/blockdev.c
@@ -1940,6 +1940,14 @@ void qmp_drive_backup(const char *device, const char
*target,
}
}
+BlockGraphNode * qmp_query_drive_graph(const char *device, Error **errp)
+{
+ /* the implementation of this function would recurse through the
+ * BlockDriverState graph to build it's result
+##
+{ 'type': 'BlockGraphNode',
+ 'data': { 'node-name': 'str', 'drv': 'str', 'children': ['BlockGraphNode'] }
}
+
+##
+# @query-drive-graph
+#
+# Get the block driver states graph for a given drive
+#
+# @device: the name of the device to get the graph from
+#
+# Returns: the root @BlockGraphNode
+#
+# Since 1.8