diff mbox

[v11,11/13] qmp: Add dirty bitmap status fields in query-block

Message ID 1421080265-2228-12-git-send-email-jsnow@redhat.com
State New
Headers show

Commit Message

John Snow Jan. 12, 2015, 4:31 p.m. UTC
From: Fam Zheng <famz@redhat.com>

Adds the "enabled" and "frozen" status booleans.

Signed-off-by: Fam Zheng <famz@redhat.com>
Signed-off-by: John Snow <jsnow@redhat.com>
---
 block.c              | 2 ++
 qapi/block-core.json | 7 ++++++-
 2 files changed, 8 insertions(+), 1 deletion(-)
diff mbox

Patch

diff --git a/block.c b/block.c
index 5eb6788..9e2b8c0 100644
--- a/block.c
+++ b/block.c
@@ -5531,6 +5531,8 @@  BlockDirtyInfoList *bdrv_query_dirty_bitmaps(BlockDriverState *bs)
         info->granularity = bdrv_dirty_bitmap_granularity(bs, bm);
         info->has_name = !!bm->name;
         info->name = g_strdup(bm->name);
+        info->enabled = bm->enabled;
+        info->frozen = bm->frozen;
         entry->value = info;
         *plist = entry;
         plist = &entry->next;
diff --git a/qapi/block-core.json b/qapi/block-core.json
index 92c3a84..5f82cf3 100644
--- a/qapi/block-core.json
+++ b/qapi/block-core.json
@@ -328,10 +328,15 @@ 
 #
 # @granularity: granularity of the dirty bitmap in bytes (since 1.4)
 #
+# @enabled: whether the dirty bitmap is enabled (Since 2.3)
+#
+# @frozen: whether the dirty bitmap is frozen (Since 2.3)
+#
 # Since: 1.3
 ##
 { 'type': 'BlockDirtyInfo',
-  'data': {'*name': 'str', 'count': 'int', 'granularity': 'int'} }
+  'data': {'*name': 'str', 'count': 'int', 'granularity': 'int',
+           'enabled': 'bool', 'frozen': 'bool'} }
 
 ##
 # @BlockInfo: