From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:37512) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SzUGI-00028X-0r for qemu-devel@nongnu.org; Thu, 09 Aug 2012 11:02:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SzUGD-0006Km-3N for qemu-devel@nongnu.org; Thu, 09 Aug 2012 11:02:57 -0400 Received: from mx1.redhat.com ([209.132.183.28]:43438) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SzUGC-0006KX-Dn for qemu-devel@nongnu.org; Thu, 09 Aug 2012 11:02:53 -0400 Message-ID: <5023D0FC.3040401@redhat.com> Date: Thu, 09 Aug 2012 17:02:20 +0200 From: Kevin Wolf MIME-Version: 1.0 References: <1344513957-17906-1-git-send-email-stefanha@linux.vnet.ibm.com> In-Reply-To: <1344513957-17906-1-git-send-email-stefanha@linux.vnet.ibm.com> Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v2 0/4] qcow2: clean-ups around lazy refcounts List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stefan Hajnoczi Cc: qemu-devel@nongnu.org Am 09.08.2012 14:05, schrieb Stefan Hajnoczi: > The qcow2 lazy refcount feature was merged with two pending clean-ups suggested > by Kevin: > > 1. Ensure that qemu-iotests/check -nocache 039 does not fail. > > 2. Fix qemu-img check output when a dirty image file is opened. It currently > omits the error summary because automatic repair cleans the image during > bdrv_open() before qemu-img.c can call bdrv_check(). > > v2: > * Fail when qcow2 check finds corruptions [Kevin] > > Stefan Hajnoczi (4): > qed: mark image clean after repair succeeds > qcow2: mark image clean after repair succeeds > block: add BLOCK_O_CHECK for qemu-img check > qemu-iotests: skip 039 with ./check -nocache > > block.h | 1 + > block/qcow2.c | 32 +++++++++++++++++--------------- > block/qed-check.c | 26 ++++++++++++++++++++++++++ > block/qed.c | 11 ++--------- > block/qed.h | 5 +++++ > qemu-img.c | 2 +- > tests/qemu-iotests/039 | 1 + > tests/qemu-iotests/039.out | 6 ++++++ > tests/qemu-iotests/common.rc | 14 ++++++++++++++ > 9 files changed, 73 insertions(+), 25 deletions(-) Thanks, applied all to the block branch. Kevin