qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Alberto Garcia <berto@igalia.com>
To: qemu-devel@nongnu.org
Cc: qemu-block@nongnu.org, Kevin Wolf <kwolf@redhat.com>,
	Max Reitz <mreitz@redhat.com>, Eric Blake <eblake@redhat.com>,
	Markus Armbruster <armbru@redhat.com>,
	Alberto Garcia <berto@igalia.com>
Subject: [Qemu-devel] [PATCH v12 08/19] block: Block all intermediate nodes in commit_active_start()
Date: Wed, 26 Oct 2016 13:29:22 +0300	[thread overview]
Message-ID: <ce90bd5f262cf1484788f4d0e59bd2cd3e9ed1ba.1477476553.git.berto@igalia.com> (raw)
In-Reply-To: <cover.1477476553.git.berto@igalia.com>
In-Reply-To: <cover.1477476553.git.berto@igalia.com>

When block-commit is launched without the top parameter, it uses
internally a mirror block job. In that case all intermediate nodes
between the active and base nodes must be blocked as well.

Signed-off-by: Alberto Garcia <berto@igalia.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
---
 block/mirror.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/block/mirror.c b/block/mirror.c
index a4273f6..94be565 100644
--- a/block/mirror.c
+++ b/block/mirror.c
@@ -967,6 +967,14 @@ static void mirror_start_job(const char *job_id, BlockDriverState *bs,
     }
 
     block_job_add_bdrv(&s->common, target);
+    /* In commit_active_start() all intermediate nodes disappear, so
+     * any jobs in them must be blocked */
+    if (bdrv_chain_contains(bs, target)) {
+        BlockDriverState *iter;
+        for (iter = backing_bs(bs); iter != target; iter = backing_bs(iter)) {
+            block_job_add_bdrv(&s->common, iter);
+        }
+    }
 
     s->common.co = qemu_coroutine_create(mirror_run, s);
     trace_mirror_start(bs, s, s->common.co, opaque);
-- 
2.9.3

  parent reply	other threads:[~2016-10-26 10:30 UTC|newest]

Thread overview: 41+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-10-26 10:29 [Qemu-devel] [PATCH v12 00/19] Support streaming to an intermediate layer Alberto Garcia
2016-10-26 10:29 ` [Qemu-devel] [PATCH v12 01/19] block: Add bdrv_drain_all_{begin, end}() Alberto Garcia
2016-10-26 14:35   ` Kevin Wolf
2016-10-26 10:29 ` [Qemu-devel] [PATCH v12 02/19] block: Pause all jobs during bdrv_reopen_multiple() Alberto Garcia
2016-10-26 14:36   ` Kevin Wolf
2016-10-26 10:29 ` [Qemu-devel] [PATCH v12 03/19] block: Add block_job_add_bdrv() Alberto Garcia
2016-10-26 14:36   ` Kevin Wolf
2016-10-26 10:29 ` [Qemu-devel] [PATCH v12 04/19] block: Use block_job_add_bdrv() in mirror_start_job() Alberto Garcia
2016-10-26 14:40   ` Kevin Wolf
2016-10-26 10:29 ` [Qemu-devel] [PATCH v12 05/19] block: Use block_job_add_bdrv() in backup_start() Alberto Garcia
2016-10-26 14:41   ` Kevin Wolf
2016-10-26 10:29 ` [Qemu-devel] [PATCH v12 06/19] block: Check blockers in all nodes involved in a block-commit job Alberto Garcia
2016-10-26 10:29 ` [Qemu-devel] [PATCH v12 07/19] block: Block all nodes involved in the block-commit operation Alberto Garcia
2016-10-26 14:49   ` Kevin Wolf
2016-10-26 10:29 ` Alberto Garcia [this message]
2016-10-26 10:29 ` [Qemu-devel] [PATCH v12 09/19] block: Support streaming to an intermediate layer Alberto Garcia
2016-10-26 14:52   ` Kevin Wolf
2016-10-26 10:29 ` [Qemu-devel] [PATCH v12 10/19] block: Add QMP support for " Alberto Garcia
2016-10-26 14:58   ` Kevin Wolf
2016-10-26 17:23     ` Alberto Garcia
2016-10-27  8:58       ` Kevin Wolf
2016-10-27 10:08         ` Alberto Garcia
2016-10-27 14:46         ` Eric Blake
2016-10-26 10:29 ` [Qemu-devel] [PATCH v12 11/19] docs: Document how to stream " Alberto Garcia
2016-10-26 15:01   ` Kevin Wolf
2016-10-26 10:29 ` [Qemu-devel] [PATCH v12 12/19] qemu-iotests: Test streaming " Alberto Garcia
2016-10-27 15:13   ` Kevin Wolf
2016-10-26 10:29 ` [Qemu-devel] [PATCH v12 13/19] qemu-iotests: Test block-stream operations in parallel Alberto Garcia
2016-10-27 15:23   ` Kevin Wolf
2016-10-26 10:29 ` [Qemu-devel] [PATCH v12 14/19] qemu-iotests: Test overlapping stream and commit operations Alberto Garcia
2016-10-27 15:36   ` Kevin Wolf
2016-10-26 10:29 ` [Qemu-devel] [PATCH v12 15/19] qemu-iotests: Test block-stream and block-commit in parallel Alberto Garcia
2016-10-27 15:54   ` Kevin Wolf
2016-10-26 10:29 ` [Qemu-devel] [PATCH v12 16/19] qemu-iotests: Add iotests.supports_quorum() Alberto Garcia
2016-10-27 15:56   ` Kevin Wolf
2016-10-26 10:29 ` [Qemu-devel] [PATCH v12 17/19] qemu-iotests: Test streaming to a Quorum child Alberto Garcia
2016-10-27 16:03   ` Kevin Wolf
2016-10-26 10:29 ` [Qemu-devel] [PATCH v12 18/19] block: Add 'base-node' parameter to the 'block-stream' command Alberto Garcia
2016-10-27 16:09   ` Kevin Wolf
2016-10-26 10:29 ` [Qemu-devel] [PATCH v12 19/19] qemu-iotests: Test the 'base-node' parameter of 'block-stream' Alberto Garcia
2016-10-27 16:13   ` Kevin Wolf

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=ce90bd5f262cf1484788f4d0e59bd2cd3e9ed1ba.1477476553.git.berto@igalia.com \
    --to=berto@igalia.com \
    --cc=armbru@redhat.com \
    --cc=eblake@redhat.com \
    --cc=kwolf@redhat.com \
    --cc=mreitz@redhat.com \
    --cc=qemu-block@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).