From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57743) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vglmk-0001XZ-Jr for qemu-devel@nongnu.org; Wed, 13 Nov 2013 20:32:03 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Vglmb-0008CP-AQ for qemu-devel@nongnu.org; Wed, 13 Nov 2013 20:31:54 -0500 Received: from e28smtp03.in.ibm.com ([122.248.162.3]:51200) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vglma-0008Br-Kz for qemu-devel@nongnu.org; Wed, 13 Nov 2013 20:31:45 -0500 Received: from /spool/local by e28smtp03.in.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Thu, 14 Nov 2013 07:01:39 +0530 Received: from d28relay05.in.ibm.com (d28relay05.in.ibm.com [9.184.220.62]) by d28dlp01.in.ibm.com (Postfix) with ESMTP id 82E42E004A for ; Thu, 14 Nov 2013 07:03:29 +0530 (IST) Received: from d28av02.in.ibm.com (d28av02.in.ibm.com [9.184.220.64]) by d28relay05.in.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id rAE1VXaC39190556 for ; Thu, 14 Nov 2013 07:01:33 +0530 Received: from d28av02.in.ibm.com (localhost [127.0.0.1]) by d28av02.in.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id rAE1VZxk009416 for ; Thu, 14 Nov 2013 07:01:36 +0530 Message-ID: <528427F6.2000503@linux.vnet.ibm.com> Date: Thu, 14 Nov 2013 09:31:34 +0800 From: Wenchao Xia MIME-Version: 1.0 References: <1384338584-14065-1-git-send-email-famz@redhat.com> <1384338584-14065-3-git-send-email-famz@redhat.com> In-Reply-To: <1384338584-14065-3-git-send-email-famz@redhat.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v3 2/2] qapi: Change BlockDirtyInfo to list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Fam Zheng , qemu-devel@nongnu.org Cc: kwolf@redhat.com, pbonzini@redhat.com, stefanha@redhat.com, =?UTF-8?B?QmVub8OudCBDYW5ldA==?= > --- a/qapi-schema.json > +++ b/qapi-schema.json > @@ -948,8 +948,8 @@ > # @tray_open: #optional True if the device has a tray and it is open > # (only present if removable is true) > # > -# @dirty: #optional dirty bitmap information (only present if the dirty > -# bitmap is enabled) > +# @dirty-bitmaps: #optional dirty bitmaps information (only present if the > +# driver has one or more dirty bitmaps) > # > # @io-status: #optional @BlockDeviceIoStatus. Only present if the device > # supports it and the VM is configured to stop on errors > @@ -963,7 +963,7 @@ > 'data': {'device': 'str', 'type': 'str', 'removable': 'bool', > 'locked': 'bool', '*inserted': 'BlockDeviceInfo', > '*tray_open': 'bool', '*io-status': 'BlockDeviceIoStatus', > - '*dirty': 'BlockDirtyInfo' } } > + '*dirty-bitmaps': ['BlockDirtyInfo'] } } > > ## > # @query-block: > An old member is removed, is there a compatiable issue for user?