From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:37482) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S22Gq-0007YA-1T for qemu-devel@nongnu.org; Mon, 27 Feb 2012 10:13:52 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S22Gj-0005cP-Er for qemu-devel@nongnu.org; Mon, 27 Feb 2012 10:13:47 -0500 Received: from mx1.redhat.com ([209.132.183.28]:27639) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S22Gj-0005cL-7A for qemu-devel@nongnu.org; Mon, 27 Feb 2012 10:13:41 -0500 Message-ID: <4F4B9E73.3060601@redhat.com> Date: Mon, 27 Feb 2012 16:17:07 +0100 From: Kevin Wolf MIME-Version: 1.0 References: <20120224170143.78f55d3e@doriath.home> <8eaeb022-ea20-4823-886a-e629bce1c776@zmail16.collab.prod.int.phx2.redhat.com> <20120227091215.7849e558@doriath.home> <4F4B7BCD.6000808@redhat.com> <20120227100645.3f36d52d@doriath.home> <4F4B95A5.3000804@redhat.com> <4F4B9761.3010601@codemonkey.ws> <4F4B9931.30708@redhat.com> <4F4B9A46.3090706@codemonkey.ws> In-Reply-To: <4F4B9A46.3090706@codemonkey.ws> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] drive transactions (was Re: [PATCH 2/2 v2] Add the blockdev-reopen and blockdev-migrate commands) List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: Jeff Cody , mtosatti@redhat.com, qemu-devel@nongnu.org, armbru@redhat.com, Federico Simoncelli , Paolo Bonzini , Luiz Capitulino Am 27.02.2012 15:59, schrieb Anthony Liguori: > On 02/27/2012 08:54 AM, Paolo Bonzini wrote: >> On 02/27/2012 03:46 PM, Anthony Liguori wrote: >>> I think a better way to think of this is as a batch submission. It >>> would be relatively easy to model in QMP too (just have a batch-command >>> that has a list of commands as it's argument). >>> >>> The difference between batch submission and a transaction is atomic >>> rollback. But I don't think atomic rollback is really needed here. >> >> A transaction enforces atomicity at the block layer level. It's >> different from batch commands in two ways: >> >> * bdrv_drain_all/bdrv_flush needs to be called at the beginning of the >> commit. This may not be the case with batch commands. >> >> * with batch commands, atomicity happens by chance because VCPUs cannot >> send I/O while the monitor is holding the global mutex. > > If the commands are designed correctly, then this works well. The problem is > that the current commands are not designed well. For instance, multi-snapshot > could look like: > > block-freeze ide0-hd0 > block-freeze ide1-hd1 > block-reopen ide0-hd0 my-new-file0.qcow2 > block-reopen ide1-hd1 my-new-file1.qcow2 > block-unfreeze ide1-hd1 > block-unfreeze ide1-hd0 > > This would work regardless of whether the commands were implemented > asynchronously within QEMU too. What if block-reopen ide1-hd1 fails? In case of failure, you want both drives to point to their old image, not the first one to the new image and the second one to the old image. Kevin