From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:49331) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TcyP9-0006P8-QL for qemu-devel@nongnu.org; Mon, 26 Nov 2012 08:07:24 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TcyOz-0005Gd-QL for qemu-devel@nongnu.org; Mon, 26 Nov 2012 08:07:19 -0500 Received: from nodalink.pck.nerim.net ([62.212.105.220]:44875 helo=paradis.irqsave.net) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TcyOz-0005GV-IM for qemu-devel@nongnu.org; Mon, 26 Nov 2012 08:07:09 -0500 From: =?UTF-8?q?Beno=C3=AEt=20Canet?= Date: Mon, 26 Nov 2012 14:05:21 +0100 Message-Id: <1353935123-24199-23-git-send-email-benoit@irqsave.net> In-Reply-To: <1353935123-24199-1-git-send-email-benoit@irqsave.net> References: <1353935123-24199-1-git-send-email-benoit@irqsave.net> Subject: [Qemu-devel] [RFC V3 22/24] qcow2: Do not overwrite existing entries with QCOW_OFLAG_COPIED. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com, =?UTF-8?q?Beno=C3=AEt=20Canet?= , stefanha@redhat.com In the case of a race condition between two writes a l2 entry can be written without QCOW_OFLAG_COPIED before the first write fill it. This patch simply check if the l2 entry has the correct offset without QCOW_OFLAG_COPIED and do nothing. Signed-off-by: Benoit Canet --- block/qcow2-cluster.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/block/qcow2-cluster.c b/block/qcow2-cluster.c index 8db1b2a..0042742 100644 --- a/block/qcow2-cluster.c +++ b/block/qcow2-cluster.c @@ -699,6 +699,10 @@ 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++) { + if (be64_to_cpu(l2_table[l2_index + i]) == + (cluster_offset + (i << s->cluster_bits))) { + continue; + } /* 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 -- 1.7.10.4