From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53443) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YOwfh-0003W1-Ve for qemu-devel@nongnu.org; Fri, 20 Feb 2015 18:07:46 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YOwfb-0006mC-Qb for qemu-devel@nongnu.org; Fri, 20 Feb 2015 18:07:45 -0500 Received: from mx1.redhat.com ([209.132.183.28]:54492) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YOwfb-0006lw-Ho for qemu-devel@nongnu.org; Fri, 20 Feb 2015 18:07:39 -0500 From: John Snow Date: Fri, 20 Feb 2015 18:07:17 -0500 Message-Id: <1424473645-29161-12-git-send-email-jsnow@redhat.com> In-Reply-To: <1424473645-29161-1-git-send-email-jsnow@redhat.com> References: <1424473645-29161-1-git-send-email-jsnow@redhat.com> Subject: [Qemu-devel] [PATCH v14 11/19] qmp: Add dirty bitmap status fields 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 Adds the "disabled" and "frozen" status booleans. Signed-off-by: Fam Zheng Signed-off-by: John Snow Reviewed-by: Max Reitz --- block.c | 2 ++ qapi/block-core.json | 7 ++++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/block.c b/block.c index e2da4cb..a7f56f4 100644 --- a/block.c +++ b/block.c @@ -5564,6 +5564,8 @@ BlockDirtyInfoList *bdrv_query_dirty_bitmaps(BlockDriverState *bs) info->granularity = bdrv_dirty_bitmap_granularity(bm); info->has_name = !!bm->name; info->name = g_strdup(bm->name); + info->disabled = bm->disabled; + info->frozen = bdrv_dirty_bitmap_frozen(bm); entry->value = info; *plist = entry; plist = &entry->next; diff --git a/qapi/block-core.json b/qapi/block-core.json index bfdb293..02bf2b6 100644 --- a/qapi/block-core.json +++ b/qapi/block-core.json @@ -332,10 +332,15 @@ # # @granularity: granularity of the dirty bitmap in bytes (since 1.4) # +# @disabled: whether the dirty bitmap is disabled (Since 2.3) +# +# @frozen: whether the dirty bitmap is frozen (Since 2.3) +# # Since: 1.3 ## { 'type': 'BlockDirtyInfo', - 'data': {'*name': 'str', 'count': 'int', 'granularity': 'uint32'} } + 'data': {'*name': 'str', 'count': 'int', 'granularity': 'uint32', + 'disabled': 'bool', 'frozen': 'bool'} } ## # @BlockInfo: -- 1.9.3