From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33327) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XtM5E-0003VN-PS for qemu-devel@nongnu.org; Tue, 25 Nov 2014 14:47:39 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XtM58-0004LG-Bz for qemu-devel@nongnu.org; Tue, 25 Nov 2014 14:47:32 -0500 Received: from mx1.redhat.com ([209.132.183.28]:27054) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XtM58-0004Kj-5F for qemu-devel@nongnu.org; Tue, 25 Nov 2014 14:47:26 -0500 Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id sAPJlPMN024454 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Tue, 25 Nov 2014 14:47:25 -0500 From: John Snow Date: Tue, 25 Nov 2014 14:46:39 -0500 Message-Id: <1416944800-17919-10-git-send-email-jsnow@redhat.com> In-Reply-To: <1416944800-17919-1-git-send-email-jsnow@redhat.com> References: <1416944800-17919-1-git-send-email-jsnow@redhat.com> Subject: [Qemu-devel] [2.3 PATCH v7 09/10] 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: John Snow , Fam Zheng 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 cf93148..3acf289 100644 --- a/block.c +++ b/block.c @@ -5404,6 +5404,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 3f7a35d..c9d673b 100644 --- a/qapi/block-core.json +++ b/qapi/block-core.json @@ -310,10 +310,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