From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53651) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y3E23-0004aO-G8 for qemu-devel@nongnu.org; Mon, 22 Dec 2014 20:13:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Y3E1x-0000yK-AV for qemu-devel@nongnu.org; Mon, 22 Dec 2014 20:13:03 -0500 Received: from mx1.redhat.com ([209.132.183.28]:52678) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y3E1x-0000yD-2g for qemu-devel@nongnu.org; Mon, 22 Dec 2014 20:12:57 -0500 From: John Snow Date: Mon, 22 Dec 2014 20:12:21 -0500 Message-Id: <1419297142-24282-13-git-send-email-jsnow@redhat.com> In-Reply-To: <1419297142-24282-1-git-send-email-jsnow@redhat.com> References: <1419297142-24282-1-git-send-email-jsnow@redhat.com> Subject: [Qemu-devel] [PATCH v10 12/13] qmp: Add dirty bitmap 'enabled' field in query-block List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com, famz@redhat.com, John Snow , armbru@redhat.com, mreitz@redhat.com, vsementsov@parallels.com, stefanha@redhat.com From: Fam Zheng Signed-off-by: Fam Zheng Signed-off-by: John Snow --- block.c | 1 + qapi/block-core.json | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/block.c b/block.c index 3d1337b..2466ba8 100644 --- a/block.c +++ b/block.c @@ -5444,6 +5444,7 @@ 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; entry->value = info; *plist = entry; plist = &entry->next; diff --git a/qapi/block-core.json b/qapi/block-core.json index 92c3a84..1892b50 100644 --- a/qapi/block-core.json +++ b/qapi/block-core.json @@ -328,10 +328,13 @@ # # @granularity: granularity of the dirty bitmap in bytes (since 1.4) # +# @enabled: whether the dirty bitmap is enabled (Since 2.3) +# # Since: 1.3 ## { 'type': 'BlockDirtyInfo', - 'data': {'*name': 'str', 'count': 'int', 'granularity': 'int'} } + 'data': {'*name': 'str', 'count': 'int', 'granularity': 'int', + 'enabled': 'bool'} } ## # @BlockInfo: -- 1.9.3