From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57627) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZYpNO-0003kT-Dn for qemu-devel@nongnu.org; Mon, 07 Sep 2015 01:53:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZYpNK-00088x-CP for qemu-devel@nongnu.org; Mon, 07 Sep 2015 01:53:58 -0400 References: <1437414365-11881-1-git-send-email-mreitz@redhat.com> <55E70F9B.20309@redhat.com> From: Wen Congyang Message-ID: <55ED2655.1040405@cn.fujitsu.com> Date: Mon, 7 Sep 2015 13:53:25 +0800 MIME-Version: 1.0 In-Reply-To: <55E70F9B.20309@redhat.com> Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v4 00/38] blockdev: BlockBackend and media List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Eric Blake , Max Reitz , qemu-block@nongnu.org Cc: Kevin Wolf , Alberto Garcia , qemu-devel@nongnu.org, Markus Armbruster , Stefan Hajnoczi , John Snow On 09/02/2015 11:02 PM, Eric Blake wrote: > On 07/20/2015 11:45 AM, Max Reitz wrote: >> First of all: Thank you, Eric and Berto, for reviewing v3! And thank >> you, Fam, for at least having a peek at it and being confident enough to >> base a series of your own on it. :-) >> >> This series reworks a lot regarding BlockBackend and media. Basically, >> it allows empty BlockBackends, that is BBs without a BDS tree. >> >> Before this series, empty drives are represented by a BlockBackend with >> an empty BDS attached to it (a BDS with a NULL driver). However, now we >> have BlockBackends, thus an empty drive should be represented by a >> BlockBackend without any BDS tree attached to it. This is what this >> series does. > > We've obviously missed 2.4; but now that 2.5 is open, are there plans to > get this series in sooner rather than later? Wen's work on dynamically > adding/deleting children from a quorum would benefit from the ability to > create a BDS without an associated BB, which in turn would help the COLO > work. > This feature is very useful for COLO. COLO needs the following: 1. adding/deleting children from a quorum dynamically 2. allow references for backing files The BDS without BB only can be created by the monitor command blockdev-add. How to create it in the command line? Thanks Wen Congyang