|
|
1bdc94 |
From 0ac47b4655421a41af7f14aed2949643849635e5 Mon Sep 17 00:00:00 2001
|
|
|
1bdc94 |
From: John Snow <jsnow@redhat.com>
|
|
|
1bdc94 |
Date: Mon, 10 Sep 2018 18:18:01 +0200
|
|
|
1bdc94 |
Subject: [PATCH 23/25] qapi/block-stream: expose new job properties
|
|
|
1bdc94 |
|
|
|
1bdc94 |
RH-Author: John Snow <jsnow@redhat.com>
|
|
|
1bdc94 |
Message-id: <20180910181803.11781-24-jsnow@redhat.com>
|
|
|
1bdc94 |
Patchwork-id: 82099
|
|
|
1bdc94 |
O-Subject: [RHEL-7.6 qemu-kvm-rhev PATCH 23/25] qapi/block-stream: expose new job properties
|
|
|
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 |
Signed-off-by: John Snow <jsnow@redhat.com>
|
|
|
1bdc94 |
Reviewed-by: Max Reitz <mreitz@redhat.com>
|
|
|
1bdc94 |
Message-id: 20180906130225.5118-15-jsnow@redhat.com
|
|
|
1bdc94 |
Reviewed-by: Jeff Cody <jcody@redhat.com>
|
|
|
1bdc94 |
Signed-off-by: Max Reitz <mreitz@redhat.com>
|
|
|
1bdc94 |
(cherry picked from commit fd4bbe3c2caa01a2be5b311ef0685c7f92789592)
|
|
|
1bdc94 |
Signed-off-by: John Snow <jsnow@redhat.com>
|
|
|
1bdc94 |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
1bdc94 |
---
|
|
|
1bdc94 |
blockdev.c | 9 +++++++++
|
|
|
1bdc94 |
hmp.c | 5 +++--
|
|
|
1bdc94 |
qapi/block-core.json | 16 +++++++++++++++-
|
|
|
1bdc94 |
3 files changed, 27 insertions(+), 3 deletions(-)
|
|
|
1bdc94 |
|
|
|
1bdc94 |
diff --git a/blockdev.c b/blockdev.c
|
|
|
1bdc94 |
index a655387..6325471 100644
|
|
|
1bdc94 |
--- a/blockdev.c
|
|
|
1bdc94 |
+++ b/blockdev.c
|
|
|
1bdc94 |
@@ -3273,6 +3273,8 @@ void qmp_block_stream(bool has_job_id, const char *job_id, const char *device,
|
|
|
1bdc94 |
bool has_backing_file, const char *backing_file,
|
|
|
1bdc94 |
bool has_speed, int64_t speed,
|
|
|
1bdc94 |
bool has_on_error, BlockdevOnError on_error,
|
|
|
1bdc94 |
+ bool has_auto_finalize, bool auto_finalize,
|
|
|
1bdc94 |
+ bool has_auto_dismiss, bool auto_dismiss,
|
|
|
1bdc94 |
Error **errp)
|
|
|
1bdc94 |
{
|
|
|
1bdc94 |
BlockDriverState *bs, *iter;
|
|
|
1bdc94 |
@@ -3342,6 +3344,13 @@ void qmp_block_stream(bool has_job_id, const char *job_id, const char *device,
|
|
|
1bdc94 |
/* backing_file string overrides base bs filename */
|
|
|
1bdc94 |
base_name = has_backing_file ? backing_file : base_name;
|
|
|
1bdc94 |
|
|
|
1bdc94 |
+ if (has_auto_finalize && !auto_finalize) {
|
|
|
1bdc94 |
+ job_flags |= JOB_MANUAL_FINALIZE;
|
|
|
1bdc94 |
+ }
|
|
|
1bdc94 |
+ if (has_auto_dismiss && !auto_dismiss) {
|
|
|
1bdc94 |
+ job_flags |= JOB_MANUAL_DISMISS;
|
|
|
1bdc94 |
+ }
|
|
|
1bdc94 |
+
|
|
|
1bdc94 |
stream_start(has_job_id ? job_id : NULL, bs, base_bs, base_name,
|
|
|
1bdc94 |
job_flags, has_speed ? speed : 0, on_error, &local_err);
|
|
|
1bdc94 |
if (local_err) {
|
|
|
1bdc94 |
diff --git a/hmp.c b/hmp.c
|
|
|
1bdc94 |
index 7a53e63..cc088da 100644
|
|
|
1bdc94 |
--- a/hmp.c
|
|
|
1bdc94 |
+++ b/hmp.c
|
|
|
1bdc94 |
@@ -1807,8 +1807,9 @@ void hmp_block_stream(Monitor *mon, const QDict *qdict)
|
|
|
1bdc94 |
int64_t speed = qdict_get_try_int(qdict, "speed", 0);
|
|
|
1bdc94 |
|
|
|
1bdc94 |
qmp_block_stream(true, device, device, base != NULL, base, false, NULL,
|
|
|
1bdc94 |
- false, NULL, qdict_haskey(qdict, "speed"), speed,
|
|
|
1bdc94 |
- true, BLOCKDEV_ON_ERROR_REPORT, &error);
|
|
|
1bdc94 |
+ false, NULL, qdict_haskey(qdict, "speed"), speed, true,
|
|
|
1bdc94 |
+ BLOCKDEV_ON_ERROR_REPORT, false, false, false, false,
|
|
|
1bdc94 |
+ &error);
|
|
|
1bdc94 |
|
|
|
1bdc94 |
hmp_handle_error(mon, &error);
|
|
|
1bdc94 |
}
|
|
|
1bdc94 |
diff --git a/qapi/block-core.json b/qapi/block-core.json
|
|
|
1bdc94 |
index 6a5e357..5526cbc 100644
|
|
|
1bdc94 |
--- a/qapi/block-core.json
|
|
|
1bdc94 |
+++ b/qapi/block-core.json
|
|
|
1bdc94 |
@@ -2296,6 +2296,19 @@
|
|
|
1bdc94 |
# 'stop' and 'enospc' can only be used if the block device
|
|
|
1bdc94 |
# supports io-status (see BlockInfo). Since 1.3.
|
|
|
1bdc94 |
#
|
|
|
1bdc94 |
+# @auto-finalize: When false, this job will wait in a PENDING state after it has
|
|
|
1bdc94 |
+# finished its work, waiting for @block-job-finalize before
|
|
|
1bdc94 |
+# making any block graph changes.
|
|
|
1bdc94 |
+# When true, this job will automatically
|
|
|
1bdc94 |
+# perform its abort or commit actions.
|
|
|
1bdc94 |
+# Defaults to true. (Since 3.1)
|
|
|
1bdc94 |
+#
|
|
|
1bdc94 |
+# @auto-dismiss: When false, this job will wait in a CONCLUDED state after it
|
|
|
1bdc94 |
+# has completely ceased all work, and awaits @block-job-dismiss.
|
|
|
1bdc94 |
+# When true, this job will automatically disappear from the query
|
|
|
1bdc94 |
+# list without user intervention.
|
|
|
1bdc94 |
+# Defaults to true. (Since 3.1)
|
|
|
1bdc94 |
+#
|
|
|
1bdc94 |
# Returns: Nothing on success. If @device does not exist, DeviceNotFound.
|
|
|
1bdc94 |
#
|
|
|
1bdc94 |
# Since: 1.1
|
|
|
1bdc94 |
@@ -2311,7 +2324,8 @@
|
|
|
1bdc94 |
{ 'command': 'block-stream',
|
|
|
1bdc94 |
'data': { '*job-id': 'str', 'device': 'str', '*base': 'str',
|
|
|
1bdc94 |
'*base-node': 'str', '*backing-file': 'str', '*speed': 'int',
|
|
|
1bdc94 |
- '*on-error': 'BlockdevOnError' } }
|
|
|
1bdc94 |
+ '*on-error': 'BlockdevOnError',
|
|
|
1bdc94 |
+ '*auto-finalize': 'bool', '*auto-dismiss': 'bool' } }
|
|
|
1bdc94 |
|
|
|
1bdc94 |
##
|
|
|
1bdc94 |
# @block-job-set-speed:
|
|
|
1bdc94 |
--
|
|
|
1bdc94 |
1.8.3.1
|
|
|
1bdc94 |
|