summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFam Zheng2014-01-23 03:03:26 +0100
committerKevin Wolf2014-01-24 14:33:01 +0100
commitc8059b97e1f9b4635b836ee98373a0f72f9fc0b4 (patch)
treeb0b94819f101a3c1a42d36aa0d48977bf7bad844
parentvmdk: Fix format specific information (create type) for streamOptimized (diff)
downloadqemu-c8059b97e1f9b4635b836ee98373a0f72f9fc0b4.tar.gz
qemu-c8059b97e1f9b4635b836ee98373a0f72f9fc0b4.tar.xz
qemu-c8059b97e1f9b4635b836ee98373a0f72f9fc0b4.zip
qapi: Add "backing" to BlockStats
Currently there is no way to query BlockStats of the backing chain. This adds "backing" field into BlockStats to make it possible. The comment of "parent" is reworded. Signed-off-by: Fam Zheng <famz@redhat.com> Reviewed-by: Benoit Canet <benoit@irqsave.net> Reviewed-by: Eric Blake <eblake@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
-rw-r--r--block/qapi.c5
-rw-r--r--qapi-schema.json10
2 files changed, 11 insertions, 4 deletions
diff --git a/block/qapi.c b/block/qapi.c
index a32cb79db8..98b1b83bd6 100644
--- a/block/qapi.c
+++ b/block/qapi.c
@@ -318,6 +318,11 @@ BlockStats *bdrv_query_stats(const BlockDriverState *bs)
s->parent = bdrv_query_stats(bs->file);
}
+ if (bs->backing_hd) {
+ s->has_backing = true;
+ s->backing = bdrv_query_stats(bs->backing_hd);
+ }
+
return s;
}
diff --git a/qapi-schema.json b/qapi-schema.json
index 35f7b34410..a433869962 100644
--- a/qapi-schema.json
+++ b/qapi-schema.json
@@ -1022,15 +1022,17 @@
#
# @stats: A @BlockDeviceStats for the device.
#
-# @parent: #optional This may point to the backing block device if this is a
-# a virtual block device. If it's a backing block, this will point
-# to the backing file is one is present.
+# @parent: #optional This describes the file block device if it has one.
+#
+# @backing: #optional This describes the backing block device if it has one.
+# (Since 2.0)
#
# Since: 0.14.0
##
{ 'type': 'BlockStats',
'data': {'*device': 'str', 'stats': 'BlockDeviceStats',
- '*parent': 'BlockStats'} }
+ '*parent': 'BlockStats',
+ '*backing': 'BlockStats'} }
##
# @query-blockstats: