From nobody Mon Feb 9 05:43:27 2026 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) client-ip=209.51.188.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; dkim=fail; spf=pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mx.zohomail.com with SMTPS id 155240980948551.22924086079104; Tue, 12 Mar 2019 09:56:49 -0700 (PDT) Received: from localhost ([127.0.0.1]:55864 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h3khm-0004Ir-94 for importer@patchew.org; Tue, 12 Mar 2019 12:56:42 -0400 Received: from eggs.gnu.org ([209.51.188.92]:43429) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h3kaW-0006cz-Lt for qemu-devel@nongnu.org; Tue, 12 Mar 2019 12:49:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h3kaV-0006gQ-99 for qemu-devel@nongnu.org; Tue, 12 Mar 2019 12:49:12 -0400 Received: from fanzine.igalia.com ([91.117.99.155]:33715) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1h3kaU-0006dC-JI; Tue, 12 Mar 2019 12:49:11 -0400 Received: from 87-100-202-60.bb.dnainternet.fi ([87.100.202.60] helo=perseus.local) by fanzine.igalia.com with esmtpsa (Cipher TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim) id 1h3kaS-0006ok-3A; Tue, 12 Mar 2019 17:49:08 +0100 Received: from berto by perseus.local with local (Exim 4.89) (envelope-from ) id 1h3kaE-0007vd-T9; Tue, 12 Mar 2019 18:48:54 +0200 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=igalia.com; s=20170329; h=References:In-Reply-To:References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From; bh=q8z3oYHnFRa8iSsLkXPgtwzmVq/P1j3Nd/Y2HnzMDxg=; b=P+rbS1URH38v7gh9XRkmFbWdxB4g7POnRBheNSSDTFRIh1myORsGiJMQbBl44rQvaC6krn413pYxiVhB/pSmm6HThWdB7JQYa4Fa7SZQpE5A/gGqsx9phn1TfNEru2YB+reC8s5NhhZGl3jA6ibfvVYxd6hh5/lvbyi/ocAHRb9SFrW7JB/2qbvzL31c7jdFLZwjNSLrw24JHBdiuiHLYVUPJDxa4cVl+fyKJlfdZVcQbhrKnlKI9KIH/lOU1rD8M6PlfrLX33rf2t9E86IQLtIqmDnk3/XOd8eJvEuFMcAvWOfdjLVSFRWoEZ0CFkPoVg3jaas1DNsNE1JZB2I8sg==; From: Alberto Garcia To: qemu-devel@nongnu.org Date: Tue, 12 Mar 2019 18:48:41 +0200 Message-Id: <69c41327e1b5c4a2c8c08e6584786b4c95fa0a84.1552409054.git.berto@igalia.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: References: In-Reply-To: References: X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x (no timestamps) [generic] [fuzzy] X-Received-From: 91.117.99.155 Subject: [Qemu-devel] [PATCH v3 02/13] block: Freeze the backing chain for the duration of the commit job X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Kevin Wolf , Alberto Garcia , qemu-block@nongnu.org, Max Reitz Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail-DKIM: fail (Header signature does not verify) Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Signed-off-by: Alberto Garcia --- block/commit.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/block/commit.c b/block/commit.c index 3b46ca7f97..ba60fef58a 100644 --- a/block/commit.c +++ b/block/commit.c @@ -39,6 +39,7 @@ typedef struct CommitBlockJob { BlockDriverState *base_bs; BlockdevOnError on_error; bool base_read_only; + bool chain_frozen; char *backing_file_str; } CommitBlockJob; =20 @@ -68,6 +69,9 @@ static int commit_prepare(Job *job) { CommitBlockJob *s =3D container_of(job, CommitBlockJob, common.job); =20 + bdrv_unfreeze_backing_chain(s->commit_top_bs, s->base_bs); + s->chain_frozen =3D false; + /* Remove base node parent that still uses BLK_PERM_WRITE/RESIZE before * the normal backing chain can be restored. */ blk_unref(s->base); @@ -84,6 +88,10 @@ static void commit_abort(Job *job) CommitBlockJob *s =3D container_of(job, CommitBlockJob, common.job); BlockDriverState *top_bs =3D blk_bs(s->top); =20 + if (s->chain_frozen) { + bdrv_unfreeze_backing_chain(s->commit_top_bs, s->base_bs); + } + /* Make sure commit_top_bs and top stay around until bdrv_replace_node= () */ bdrv_ref(top_bs); bdrv_ref(s->commit_top_bs); @@ -330,6 +338,11 @@ void commit_start(const char *job_id, BlockDriverState= *bs, } } =20 + if (bdrv_freeze_backing_chain(commit_top_bs, base, errp) < 0) { + goto fail; + } + s->chain_frozen =3D true; + ret =3D block_job_add_bdrv(&s->common, "base", base, 0, BLK_PERM_ALL, = errp); if (ret < 0) { goto fail; @@ -362,6 +375,9 @@ void commit_start(const char *job_id, BlockDriverState = *bs, return; =20 fail: + if (s->chain_frozen) { + bdrv_unfreeze_backing_chain(commit_top_bs, base); + } if (s->base) { blk_unref(s->base); } --=20 2.11.0