From patchwork Mon Nov 26 13:05:18 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?Beno=C3=AEt_Canet?= X-Patchwork-Id: 201697 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 5B2BD2C008C for ; Tue, 27 Nov 2012 01:10:32 +1100 (EST) Received: from localhost ([::1]:40724 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TcyPK-0006UW-Rp for incoming@patchwork.ozlabs.org; Mon, 26 Nov 2012 08:07:30 -0500 Received: from eggs.gnu.org ([208.118.235.92]:49283) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TcyOz-0005yE-FQ for qemu-devel@nongnu.org; Mon, 26 Nov 2012 08:07:17 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TcyOv-0005Fw-2Y for qemu-devel@nongnu.org; Mon, 26 Nov 2012 08:07:09 -0500 Received: from nodalink.pck.nerim.net ([62.212.105.220]:44870 helo=paradis.irqsave.net) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TcyOu-0005Fq-QY for qemu-devel@nongnu.org; Mon, 26 Nov 2012 08:07:04 -0500 Received: by paradis.irqsave.net (Postfix, from userid 1002) id 561E5874300; Mon, 26 Nov 2012 14:20:02 +0100 (CET) Received: from localhost.localdomain (unknown [192.168.77.1]) by paradis.irqsave.net (Postfix) with ESMTP id 0371D874310; Mon, 26 Nov 2012 14:18:15 +0100 (CET) From: =?UTF-8?q?Beno=C3=AEt=20Canet?= To: qemu-devel@nongnu.org Date: Mon, 26 Nov 2012 14:05:18 +0100 Message-Id: <1353935123-24199-20-git-send-email-benoit@irqsave.net> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1353935123-24199-1-git-send-email-benoit@irqsave.net> References: <1353935123-24199-1-git-send-email-benoit@irqsave.net> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 62.212.105.220 Cc: kwolf@redhat.com, =?UTF-8?q?Beno=C3=AEt=20Canet?= , stefanha@redhat.com Subject: [Qemu-devel] [RFC V3 19/24] qcow2: Add verification of dedup table. X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Benoit Canet --- block/qcow2-refcount.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/block/qcow2-refcount.c b/block/qcow2-refcount.c index efc1179..16aa8a2 100644 --- a/block/qcow2-refcount.c +++ b/block/qcow2-refcount.c @@ -1168,6 +1168,14 @@ int qcow2_check_refcounts(BlockDriverState *bs, BdrvCheckResult *res, goto fail; } + if (s->has_dedup) { + ret = check_refcounts_l1(bs, res, refcount_table, nb_clusters, + s->dedup_table_offset, s->dedup_table_size, 0); + if (ret < 0) { + goto fail; + } + } + /* snapshots */ for(i = 0; i < s->nb_snapshots; i++) { sn = s->snapshots + i;