|
|
1bdc94 |
From a846fdf85ff06e60d1d4f2da8ee26a111011e1f9 Mon Sep 17 00:00:00 2001
|
|
|
1bdc94 |
From: John Snow <jsnow@redhat.com>
|
|
|
1bdc94 |
Date: Mon, 10 Sep 2018 18:17:48 +0200
|
|
|
1bdc94 |
Subject: [PATCH 10/25] block/commit: add block job creation flags
|
|
|
1bdc94 |
|
|
|
1bdc94 |
RH-Author: John Snow <jsnow@redhat.com>
|
|
|
1bdc94 |
Message-id: <20180910181803.11781-11-jsnow@redhat.com>
|
|
|
1bdc94 |
Patchwork-id: 82109
|
|
|
1bdc94 |
O-Subject: [RHEL-7.6 qemu-kvm-rhev PATCH 10/25] block/commit: add block job creation flags
|
|
|
1bdc94 |
Bugzilla: 1626061
|
|
|
1bdc94 |
RH-Acked-by: Max Reitz <mreitz@redhat.com>
|
|
|
1bdc94 |
RH-Acked-by: Jeffrey Cody <jcody@redhat.com>
|
|
|
1bdc94 |
RH-Acked-by: Kevin Wolf <kwolf@redhat.com>
|
|
|
1bdc94 |
|
|
|
1bdc94 |
Add support for taking and passing forward job creation flags.
|
|
|
1bdc94 |
|
|
|
1bdc94 |
Signed-off-by: John Snow <jsnow@redhat.com>
|
|
|
1bdc94 |
Reviewed-by: Max Reitz <mreitz@redhat.com>
|
|
|
1bdc94 |
Reviewed-by: Jeff Cody <jcody@redhat.com>
|
|
|
1bdc94 |
Message-id: 20180906130225.5118-2-jsnow@redhat.com
|
|
|
1bdc94 |
Signed-off-by: Max Reitz <mreitz@redhat.com>
|
|
|
1bdc94 |
(cherry picked from commit cbb05aee29ba2c2dbbe8ac913a05bd6e1eff4e8a)
|
|
|
1bdc94 |
Signed-off-by: John Snow <jsnow@redhat.com>
|
|
|
1bdc94 |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
1bdc94 |
---
|
|
|
1bdc94 |
block/commit.c | 5 +++--
|
|
|
1bdc94 |
blockdev.c | 7 ++++---
|
|
|
1bdc94 |
include/block/block_int.h | 5 ++++-
|
|
|
1bdc94 |
3 files changed, 11 insertions(+), 6 deletions(-)
|
|
|
1bdc94 |
|
|
|
1bdc94 |
diff --git a/block/commit.c b/block/commit.c
|
|
|
1bdc94 |
index 25b3cb8..c737664 100644
|
|
|
1bdc94 |
--- a/block/commit.c
|
|
|
1bdc94 |
+++ b/block/commit.c
|
|
|
1bdc94 |
@@ -254,7 +254,8 @@ static BlockDriver bdrv_commit_top = {
|
|
|
1bdc94 |
};
|
|
|
1bdc94 |
|
|
|
1bdc94 |
void commit_start(const char *job_id, BlockDriverState *bs,
|
|
|
1bdc94 |
- BlockDriverState *base, BlockDriverState *top, int64_t speed,
|
|
|
1bdc94 |
+ BlockDriverState *base, BlockDriverState *top,
|
|
|
1bdc94 |
+ int creation_flags, int64_t speed,
|
|
|
1bdc94 |
BlockdevOnError on_error, const char *backing_file_str,
|
|
|
1bdc94 |
const char *filter_node_name, Error **errp)
|
|
|
1bdc94 |
{
|
|
|
1bdc94 |
@@ -272,7 +273,7 @@ void commit_start(const char *job_id, BlockDriverState *bs,
|
|
|
1bdc94 |
}
|
|
|
1bdc94 |
|
|
|
1bdc94 |
s = block_job_create(job_id, &commit_job_driver, NULL, bs, 0, BLK_PERM_ALL,
|
|
|
1bdc94 |
- speed, JOB_DEFAULT, NULL, NULL, errp);
|
|
|
1bdc94 |
+ speed, creation_flags, NULL, NULL, errp);
|
|
|
1bdc94 |
if (!s) {
|
|
|
1bdc94 |
return;
|
|
|
1bdc94 |
}
|
|
|
1bdc94 |
diff --git a/blockdev.c b/blockdev.c
|
|
|
1bdc94 |
index baa7e18..20dbcf5 100644
|
|
|
1bdc94 |
--- a/blockdev.c
|
|
|
1bdc94 |
+++ b/blockdev.c
|
|
|
1bdc94 |
@@ -3371,6 +3371,7 @@ void qmp_block_commit(bool has_job_id, const char *job_id, const char *device,
|
|
|
1bdc94 |
* BlockdevOnError change for blkmirror makes it in
|
|
|
1bdc94 |
*/
|
|
|
1bdc94 |
BlockdevOnError on_error = BLOCKDEV_ON_ERROR_REPORT;
|
|
|
1bdc94 |
+ int job_flags = JOB_DEFAULT;
|
|
|
1bdc94 |
|
|
|
1bdc94 |
if (!has_speed) {
|
|
|
1bdc94 |
speed = 0;
|
|
|
1bdc94 |
@@ -3452,15 +3453,15 @@ void qmp_block_commit(bool has_job_id, const char *job_id, const char *device,
|
|
|
1bdc94 |
goto out;
|
|
|
1bdc94 |
}
|
|
|
1bdc94 |
commit_active_start(has_job_id ? job_id : NULL, bs, base_bs,
|
|
|
1bdc94 |
- JOB_DEFAULT, speed, on_error,
|
|
|
1bdc94 |
+ job_flags, speed, on_error,
|
|
|
1bdc94 |
filter_node_name, NULL, NULL, false, &local_err);
|
|
|
1bdc94 |
} else {
|
|
|
1bdc94 |
BlockDriverState *overlay_bs = bdrv_find_overlay(bs, top_bs);
|
|
|
1bdc94 |
if (bdrv_op_is_blocked(overlay_bs, BLOCK_OP_TYPE_COMMIT_TARGET, errp)) {
|
|
|
1bdc94 |
goto out;
|
|
|
1bdc94 |
}
|
|
|
1bdc94 |
- commit_start(has_job_id ? job_id : NULL, bs, base_bs, top_bs, speed,
|
|
|
1bdc94 |
- on_error, has_backing_file ? backing_file : NULL,
|
|
|
1bdc94 |
+ commit_start(has_job_id ? job_id : NULL, bs, base_bs, top_bs, job_flags,
|
|
|
1bdc94 |
+ speed, on_error, has_backing_file ? backing_file : NULL,
|
|
|
1bdc94 |
filter_node_name, &local_err);
|
|
|
1bdc94 |
}
|
|
|
1bdc94 |
if (local_err != NULL) {
|
|
|
1bdc94 |
diff --git a/include/block/block_int.h b/include/block/block_int.h
|
|
|
1bdc94 |
index b05cf11..25ad363 100644
|
|
|
1bdc94 |
--- a/include/block/block_int.h
|
|
|
1bdc94 |
+++ b/include/block/block_int.h
|
|
|
1bdc94 |
@@ -951,6 +951,8 @@ void stream_start(const char *job_id, BlockDriverState *bs,
|
|
|
1bdc94 |
* @bs: Active block device.
|
|
|
1bdc94 |
* @top: Top block device to be committed.
|
|
|
1bdc94 |
* @base: Block device that will be written into, and become the new top.
|
|
|
1bdc94 |
+ * @creation_flags: Flags that control the behavior of the Job lifetime.
|
|
|
1bdc94 |
+ * See @BlockJobCreateFlags
|
|
|
1bdc94 |
* @speed: The maximum speed, in bytes per second, or 0 for unlimited.
|
|
|
1bdc94 |
* @on_error: The action to take upon error.
|
|
|
1bdc94 |
* @backing_file_str: String to use as the backing file in @top's overlay
|
|
|
1bdc94 |
@@ -961,7 +963,8 @@ void stream_start(const char *job_id, BlockDriverState *bs,
|
|
|
1bdc94 |
*
|
|
|
1bdc94 |
*/
|
|
|
1bdc94 |
void commit_start(const char *job_id, BlockDriverState *bs,
|
|
|
1bdc94 |
- BlockDriverState *base, BlockDriverState *top, int64_t speed,
|
|
|
1bdc94 |
+ BlockDriverState *base, BlockDriverState *top,
|
|
|
1bdc94 |
+ int creation_flags, int64_t speed,
|
|
|
1bdc94 |
BlockdevOnError on_error, const char *backing_file_str,
|
|
|
1bdc94 |
const char *filter_node_name, Error **errp);
|
|
|
1bdc94 |
/**
|
|
|
1bdc94 |
--
|
|
|
1bdc94 |
1.8.3.1
|
|
|
1bdc94 |
|