From: Max Reitz <mreitz@redhat.com>
To: Alberto Garcia <berto@igalia.com>, qemu-devel@nongnu.org
Cc: qemu-block@nongnu.org, Kevin Wolf <kwolf@redhat.com>,
Eric Blake <eblake@redhat.com>, Jeff Cody <jcody@redhat.com>,
John Snow <jsnow@redhat.com>
Subject: Re: [Qemu-devel] [PATCH v3 06/11] mirror: Add 'job-id' parameter to 'blockdev-mirror' and 'drive-mirror'
Date: Sat, 2 Jul 2016 16:30:06 +0200 [thread overview]
Message-ID: <57c064d0-e1bd-b57b-0f83-81e0db2ffa56@redhat.com> (raw)
In-Reply-To: <3816b0cafeee5a2e11c7fd649ca4a43e32dfae1e.1467386530.git.berto@igalia.com>
[-- Attachment #1: Type: text/plain, Size: 5773 bytes --]
On 01.07.2016 17:52, Alberto Garcia wrote:
> This patch adds a new optional 'job-id' parameter to 'blockdev-mirror'
> and 'drive-mirror', allowing the user to specify the ID of the block
> job to be created.
>
> The HMP 'drive_mirror' command remains unchanged.
>
> Signed-off-by: Alberto Garcia <berto@igalia.com>
> Reviewed-by: Max Reitz <mreitz@redhat.com>
> Reviewed-by: Eric Blake <eblake@redhat.com>
> ---
> block/mirror.c | 15 ++++++++-------
> blockdev.c | 15 ++++++++-------
> hmp.c | 2 +-
> include/block/block_int.h | 6 ++++--
> qapi/block-core.json | 10 +++++++---
> qmp-commands.hx | 8 +++++---
> 6 files changed, 33 insertions(+), 23 deletions(-)
>
[...]
> diff --git a/include/block/block_int.h b/include/block/block_int.h
> index 549b1ed..dd45fec 100644
> --- a/include/block/block_int.h
> +++ b/include/block/block_int.h
> @@ -680,6 +680,8 @@ void commit_active_start(BlockDriverState *bs, BlockDriverState *base,
> void *opaque, Error **errp);
> /*
> * mirror_start:
> + * @job_id: The id of the newly-created job, or %NULL to have one
> + * generated automatically.
No, NULL to use the device name (same in the three following patches).
> * @bs: Block device to operate on.
> * @target: Block device to write to.
> * @replaces: Block graph node name to replace once the mirror is done. Can
> @@ -701,8 +703,8 @@ void commit_active_start(BlockDriverState *bs, BlockDriverState *base,
> * manually completed. At the end of a successful mirroring job,
> * @bs will be switched to read from @target.
> */
> -void mirror_start(BlockDriverState *bs, BlockDriverState *target,
> - const char *replaces,
> +void mirror_start(const char *job_id, BlockDriverState *bs,
> + BlockDriverState *target, const char *replaces,
> int64_t speed, uint32_t granularity, int64_t buf_size,
> MirrorSyncMode mode, BlockMirrorBackingMode backing_mode,
> BlockdevOnError on_source_error,
> diff --git a/qapi/block-core.json b/qapi/block-core.json
> index 98a20d2..6f015c8 100644
> --- a/qapi/block-core.json
> +++ b/qapi/block-core.json
> @@ -1108,6 +1108,8 @@
> #
> # Start mirroring a block device's writes to a new destination.
> #
> +# @job-id: #optional identifier for the newly-created block job (Since 2.7)
You should probably mention that this defaults to @device (as below and
in the three following patches).
Max
> +#
> # @device: the name of the device whose writes should be mirrored.
> #
> # @target: the target of the new image. If the file exists, or if it
> @@ -1160,8 +1162,8 @@
> # Since 1.3
> ##
> { 'command': 'drive-mirror',
> - 'data': { 'device': 'str', 'target': 'str', '*format': 'str',
> - '*node-name': 'str', '*replaces': 'str',
> + 'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
> + '*format': 'str', '*node-name': 'str', '*replaces': 'str',
> 'sync': 'MirrorSyncMode', '*mode': 'NewImageMode',
> '*speed': 'int', '*granularity': 'uint32',
> '*buf-size': 'int', '*on-source-error': 'BlockdevOnError',
> @@ -1243,6 +1245,8 @@
> #
> # Start mirroring a block device's writes to a new destination.
> #
> +# @job-id: #optional identifier for the newly-created block job (Since 2.7)
> +#
> # @device: the name of the device whose writes should be mirrored.
> #
> # @target: the id or node-name of the block device to mirror to. This mustn't be
> @@ -1279,7 +1283,7 @@
> # Since 2.6
> ##
> { 'command': 'blockdev-mirror',
> - 'data': { 'device': 'str', 'target': 'str',
> + 'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
> '*replaces': 'str',
> 'sync': 'MirrorSyncMode',
> '*speed': 'int', '*granularity': 'uint32',
> diff --git a/qmp-commands.hx b/qmp-commands.hx
> index 6937e83..d9a9510 100644
> --- a/qmp-commands.hx
> +++ b/qmp-commands.hx
> @@ -1656,8 +1656,8 @@ EQMP
>
> {
> .name = "drive-mirror",
> - .args_type = "sync:s,device:B,target:s,speed:i?,mode:s?,format:s?,"
> - "node-name:s?,replaces:s?,"
> + .args_type = "job-id:s?,sync:s,device:B,target:s,speed:i?,mode:s?,"
> + "format:s?,node-name:s?,replaces:s?,"
> "on-source-error:s?,on-target-error:s?,"
> "unmap:b?,"
> "granularity:i?,buf-size:i?",
> @@ -1677,6 +1677,7 @@ of the source.
>
> Arguments:
>
> +- "job-id": identifier for the newly-created block job (json-string, optional)
> - "device": device name to operate on (json-string)
> - "target": name of new image file (json-string)
> - "format": format of new image (json-string, optional)
> @@ -1720,7 +1721,7 @@ EQMP
>
> {
> .name = "blockdev-mirror",
> - .args_type = "sync:s,device:B,target:B,replaces:s?,speed:i?,"
> + .args_type = "job-id:s?,sync:s,device:B,target:B,replaces:s?,speed:i?,"
> "on-source-error:s?,on-target-error:s?,"
> "granularity:i?,buf-size:i?",
> .mhandler.cmd_new = qmp_marshal_blockdev_mirror,
> @@ -1735,6 +1736,7 @@ specifies the target of mirror operation.
>
> Arguments:
>
> +- "job-id": identifier for the newly-created block job (json-string, optional)
> - "device": device name to operate on (json-string)
> - "target": device name to mirror to (json-string)
> - "replaces": the block driver node name to replace when finished
>
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 498 bytes --]
next prev parent reply other threads:[~2016-07-02 14:30 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-07-01 15:51 [Qemu-devel] [PATCH v3 00/11] Allow creating block jobs with a user-defined ID Alberto Garcia
2016-07-01 15:51 ` [Qemu-devel] [PATCH v3 01/11] stream: Fix prototype of stream_start() Alberto Garcia
2016-07-01 15:52 ` [Qemu-devel] [PATCH v3 02/11] blockjob: Update description of the 'id' field Alberto Garcia
2016-07-02 13:47 ` Max Reitz
2016-07-01 15:52 ` [Qemu-devel] [PATCH v3 03/11] blockjob: Add block_job_get() Alberto Garcia
2016-07-01 15:52 ` [Qemu-devel] [PATCH v3 04/11] block: Use block_job_get() in find_block_job() Alberto Garcia
2016-07-02 14:02 ` Max Reitz
2016-07-04 13:23 ` Kevin Wolf
2016-07-04 14:05 ` Daniel P. Berrange
2016-07-04 13:35 ` Alberto Garcia
2016-07-01 15:52 ` [Qemu-devel] [PATCH v3 05/11] blockjob: Add 'job_id' parameter to block_job_create() Alberto Garcia
2016-07-02 14:09 ` Max Reitz
2016-07-01 15:52 ` [Qemu-devel] [PATCH v3 06/11] mirror: Add 'job-id' parameter to 'blockdev-mirror' and 'drive-mirror' Alberto Garcia
2016-07-02 14:30 ` Max Reitz [this message]
2016-07-01 15:52 ` [Qemu-devel] [PATCH v3 07/11] backup: Add 'job-id' parameter to 'blockdev-backup' and 'drive-backup' Alberto Garcia
2016-07-01 15:52 ` [Qemu-devel] [PATCH v3 08/11] stream: Add 'job-id' parameter to 'block-stream' Alberto Garcia
2016-07-01 15:52 ` [Qemu-devel] [PATCH v3 09/11] commit: Add 'job-id' parameter to 'block-commit' Alberto Garcia
2016-07-01 15:52 ` [Qemu-devel] [PATCH v3 10/11] qemu-img: Set the ID of the block job in img_commit() Alberto Garcia
2016-07-02 14:21 ` Max Reitz
2016-07-04 12:43 ` Alberto Garcia
2016-07-01 15:52 ` [Qemu-devel] [PATCH v3 11/11] blockjob: Update description of the 'device' field in the QMP API Alberto Garcia
2016-07-02 14:37 ` Max Reitz
2016-07-04 15:49 ` [Qemu-devel] [PATCH v3 00/11] Allow creating block jobs with a user-defined ID 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=57c064d0-e1bd-b57b-0f83-81e0db2ffa56@redhat.com \
--to=mreitz@redhat.com \
--cc=berto@igalia.com \
--cc=eblake@redhat.com \
--cc=jcody@redhat.com \
--cc=jsnow@redhat.com \
--cc=kwolf@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).