From patchwork Wed Feb 6 12:31:45 2013 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: 218645 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 699112C02CF for ; Thu, 7 Feb 2013 01:29:59 +1100 (EST) Received: from localhost ([::1]:34946 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U34BP-0006lk-VJ for incoming@patchwork.ozlabs.org; Wed, 06 Feb 2013 07:32:59 -0500 Received: from eggs.gnu.org ([208.118.235.92]:55531) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U34BF-0006QK-EE for qemu-devel@nongnu.org; Wed, 06 Feb 2013 07:32:55 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U34B8-000551-HX for qemu-devel@nongnu.org; Wed, 06 Feb 2013 07:32:49 -0500 Received: from nodalink.pck.nerim.net ([62.212.105.220]:43607 helo=paradis.irqsave.net) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U34B8-00054v-1S for qemu-devel@nongnu.org; Wed, 06 Feb 2013 07:32:42 -0500 Received: by paradis.irqsave.net (Postfix, from userid 1002) id 6D751874327; Wed, 6 Feb 2013 13:32:41 +0100 (CET) Received: from localhost.localdomain (unknown [192.168.77.1]) by paradis.irqsave.net (Postfix) with ESMTP id EA32C87432B; Wed, 6 Feb 2013 13:31:19 +0100 (CET) From: =?UTF-8?q?Beno=C3=AEt=20Canet?= To: qemu-devel@nongnu.org Date: Wed, 6 Feb 2013 13:31:45 +0100 Message-Id: <1360153926-9492-13-git-send-email-benoit@irqsave.net> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1360153926-9492-1-git-send-email-benoit@irqsave.net> References: <1360153926-9492-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 V6 12/33] qcow2: Makes qcow2_alloc_cluster_link_l2 mark to deduplicate clusters. 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 --- block/qcow2-cluster.c | 8 ++++++-- block/qcow2-dedup.c | 7 +++++++ block/qcow2.h | 3 +++ 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/block/qcow2-cluster.c b/block/qcow2-cluster.c index dbcb6d2..ef91216 100644 --- a/block/qcow2-cluster.c +++ b/block/qcow2-cluster.c @@ -709,6 +709,7 @@ int qcow2_alloc_cluster_link_l2(BlockDriverState *bs, QCowL2Meta *m) qcow2_cache_entry_mark_dirty(s->l2_table_cache, l2_table); for (i = 0; i < m->nb_clusters; i++) { + uint64_t flags = 0; /* if two concurrent writes happen to the same unallocated cluster * each write allocates separate cluster and writes data concurrently. * The first one to complete updates l2 table with pointer to its @@ -718,9 +719,11 @@ int qcow2_alloc_cluster_link_l2(BlockDriverState *bs, QCowL2Meta *m) if(l2_table[l2_index + i] != 0) old_cluster[j++] = l2_table[l2_index + i]; + flags = m->oflag_copied ? QCOW_OFLAG_COPIED : 0; + flags |= m->to_deduplicate ? QCOW_OFLAG_TO_DEDUP : 0; + l2_table[l2_index + i] = cpu_to_be64((cluster_offset + - (i << s->cluster_bits)) | - (m->oflag_copied ? QCOW_OFLAG_COPIED : 0)); + (i << s->cluster_bits)) | flags); } @@ -1036,6 +1039,7 @@ again: .oflag_copied = true, .overwrite = false, + .to_deduplicate = qcow2_must_deduplicate(bs), }; qemu_co_queue_init(&(*m)->dependent_requests); QLIST_INSERT_HEAD(&s->cluster_allocs, *m, next_in_flight); diff --git a/block/qcow2-dedup.c b/block/qcow2-dedup.c index de6e3a3..9a6dcc7 100644 --- a/block/qcow2-dedup.c +++ b/block/qcow2-dedup.c @@ -37,6 +37,12 @@ static int qcow2_dedup_read_write_hash(BlockDriverState *bs, uint64_t physical_sect, bool write); +bool qcow2_must_deduplicate(BlockDriverState *bs) +{ + BDRVQcowState *s = bs->opaque; + return s->has_dedup && s->dedup_status != DEDUP_STATUS_STARTED; +} + /* * Save the dedup table information into the header extensions * @@ -310,6 +316,7 @@ static int qcow2_dedup_link_l2(BlockDriverState *bs, }, .oflag_copied = false, .overwrite = overwrite, + .to_deduplicate = false, }; return qcow2_alloc_cluster_link_l2(bs, &m); } diff --git a/block/qcow2.h b/block/qcow2.h index fdba995..dcb925d 100644 --- a/block/qcow2.h +++ b/block/qcow2.h @@ -309,6 +309,8 @@ typedef struct QCowL2Meta bool oflag_copied; /* set to true if we are overwriting an L2 table entry */ bool overwrite; + /* set to true if the cluster must be tagged with QCOW_OFLAG_TO_DEDUP */ + bool to_deduplicate; /** * The COW Region between the start of the first allocated cluster and the @@ -463,6 +465,7 @@ int qcow2_cache_get_empty(BlockDriverState *bs, Qcow2Cache *c, uint64_t offset, int qcow2_cache_put(BlockDriverState *bs, Qcow2Cache *c, void **table); /* qcow2-dedup.c functions */ +bool qcow2_must_deduplicate(BlockDriverState *bs); int qcow2_dedup_read_missing_and_concatenate(BlockDriverState *bs, QEMUIOVector *qiov, uint64_t sector,