Blame SOURCES/kvm-qapi-block-mirror-expose-new-job-properties.patch

1bdc94
From 4fd9e923e840ff8a9618e018192bad6ed000cc40 Mon Sep 17 00:00:00 2001
1bdc94
From: John Snow <jsnow@redhat.com>
1bdc94
Date: Mon, 10 Sep 2018 18:18:00 +0200
1bdc94
Subject: [PATCH 22/25] qapi/block-mirror: expose new job properties
1bdc94
1bdc94
RH-Author: John Snow <jsnow@redhat.com>
1bdc94
Message-id: <20180910181803.11781-23-jsnow@redhat.com>
1bdc94
Patchwork-id: 82096
1bdc94
O-Subject: [RHEL-7.6 qemu-kvm-rhev PATCH 22/25] qapi/block-mirror: 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-14-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 61bd6718ebceae42f97a99d2ffd315b05b86f1b3)
1bdc94
Signed-off-by: John Snow <jsnow@redhat.com>
1bdc94
1bdc94
Conflicts: downstream does not have has_copy_mode.
1bdc94
    -blockdev.c
1bdc94
    -qapi/block-core.json
1bdc94
1bdc94
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
1bdc94
---
1bdc94
 blockdev.c           | 14 ++++++++++++++
1bdc94
 qapi/block-core.json | 30 ++++++++++++++++++++++++++++--
1bdc94
 2 files changed, 42 insertions(+), 2 deletions(-)
1bdc94
1bdc94
diff --git a/blockdev.c b/blockdev.c
1bdc94
index 1d0cbb1..a655387 100644
1bdc94
--- a/blockdev.c
1bdc94
+++ b/blockdev.c
1bdc94
@@ -3753,6 +3753,8 @@ static void blockdev_mirror_common(const char *job_id, BlockDriverState *bs,
1bdc94
                                    bool has_unmap, bool unmap,
1bdc94
                                    bool has_filter_node_name,
1bdc94
                                    const char *filter_node_name,
1bdc94
+                                   bool has_auto_finalize, bool auto_finalize,
1bdc94
+                                   bool has_auto_dismiss, bool auto_dismiss,
1bdc94
                                    Error **errp)
1bdc94
 {
1bdc94
     int job_flags = JOB_DEFAULT;
1bdc94
@@ -3778,6 +3780,12 @@ static void blockdev_mirror_common(const char *job_id, BlockDriverState *bs,
1bdc94
     if (!has_filter_node_name) {
1bdc94
         filter_node_name = NULL;
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
     if (granularity != 0 && (granularity < 512 || granularity > 1048576 * 64)) {
1bdc94
         error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "granularity",
1bdc94
@@ -3954,6 +3962,8 @@ void qmp_drive_mirror(DriveMirror *arg, Error **errp)
1bdc94
                            arg->has_on_target_error, arg->on_target_error,
1bdc94
                            arg->has_unmap, arg->unmap,
1bdc94
                            false, NULL,
1bdc94
+                           arg->has_auto_finalize, arg->auto_finalize,
1bdc94
+                           arg->has_auto_dismiss, arg->auto_dismiss,
1bdc94
                            &local_err);
1bdc94
     bdrv_unref(target_bs);
1bdc94
     error_propagate(errp, local_err);
1bdc94
@@ -3974,6 +3984,8 @@ void qmp_blockdev_mirror(bool has_job_id, const char *job_id,
1bdc94
                          BlockdevOnError on_target_error,
1bdc94
                          bool has_filter_node_name,
1bdc94
                          const char *filter_node_name,
1bdc94
+                         bool has_auto_finalize, bool auto_finalize,
1bdc94
+                         bool has_auto_dismiss, bool auto_dismiss,
1bdc94
                          Error **errp)
1bdc94
 {
1bdc94
     BlockDriverState *bs;
1bdc94
@@ -4006,6 +4018,8 @@ void qmp_blockdev_mirror(bool has_job_id, const char *job_id,
1bdc94
                            has_on_target_error, on_target_error,
1bdc94
                            true, true,
1bdc94
                            has_filter_node_name, filter_node_name,
1bdc94
+                           has_auto_finalize, auto_finalize,
1bdc94
+                           has_auto_dismiss, auto_dismiss,
1bdc94
                            &local_err);
1bdc94
     error_propagate(errp, local_err);
1bdc94
 
1bdc94
diff --git a/qapi/block-core.json b/qapi/block-core.json
1bdc94
index af453c5..6a5e357 100644
1bdc94
--- a/qapi/block-core.json
1bdc94
+++ b/qapi/block-core.json
1bdc94
@@ -1712,6 +1712,18 @@
1bdc94
 #         written. Both will result in identical contents.
1bdc94
 #         Default is true. (Since 2.4)
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
 # Since: 1.3
1bdc94
 ##
1bdc94
 { 'struct': 'DriveMirror',
1bdc94
@@ -1721,7 +1733,8 @@
1bdc94
             '*speed': 'int', '*granularity': 'uint32',
1bdc94
             '*buf-size': 'int', '*on-source-error': 'BlockdevOnError',
1bdc94
             '*on-target-error': 'BlockdevOnError',
1bdc94
-            '*unmap': 'bool' } }
1bdc94
+            '*unmap': 'bool',
1bdc94
+            '*auto-finalize': 'bool', '*auto-dismiss': 'bool' } }
1bdc94
 
1bdc94
 ##
1bdc94
 # @BlockDirtyBitmap:
1bdc94
@@ -1984,6 +1997,18 @@
1bdc94
 #                    above @device. If this option is not given, a node name is
1bdc94
 #                    autogenerated. (Since: 2.9)
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
 # Returns: nothing on success.
1bdc94
 #
1bdc94
 # Since: 2.6
1bdc94
@@ -2004,7 +2029,8 @@
1bdc94
             '*speed': 'int', '*granularity': 'uint32',
1bdc94
             '*buf-size': 'int', '*on-source-error': 'BlockdevOnError',
1bdc94
             '*on-target-error': 'BlockdevOnError',
1bdc94
-            '*filter-node-name': 'str' } }
1bdc94
+            '*filter-node-name': 'str',
1bdc94
+            '*auto-finalize': 'bool', '*auto-dismiss': 'bool' } }
1bdc94
 
1bdc94
 ##
1bdc94
 # @block_set_io_throttle:
1bdc94
-- 
1bdc94
1.8.3.1
1bdc94