|
|
719b13 |
From d40f63360fc8677ac2ac3a679bab4c1e3dbe334f Mon Sep 17 00:00:00 2001
|
|
|
719b13 |
From: Leonardo Bras <leobras@redhat.com>
|
|
|
719b13 |
Date: Mon, 25 Jul 2022 22:02:35 -0300
|
|
|
719b13 |
Subject: [PATCH 33/34] migration: add remaining params->has_* = true in
|
|
|
719b13 |
migration_instance_init()
|
|
|
719b13 |
MIME-Version: 1.0
|
|
|
719b13 |
Content-Type: text/plain; charset=UTF-8
|
|
|
719b13 |
Content-Transfer-Encoding: 8bit
|
|
|
719b13 |
|
|
|
719b13 |
RH-Author: Leonardo BrĂ¡s <leobras@redhat.com>
|
|
|
719b13 |
RH-MergeRequest: 185: MSG_ZEROCOPY + Multifd @ rhel8.6
|
|
|
719b13 |
RH-Commit: [33/34] cc70a134ae27296e8a07dffd4dfccf1a329f27f1
|
|
|
719b13 |
RH-Bugzilla: 2117252
|
|
|
719b13 |
RH-Acked-by: quintela1 <quintela@redhat.com>
|
|
|
719b13 |
RH-Acked-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
|
|
|
719b13 |
RH-Acked-by: Peter Xu <peterx@redhat.com>
|
|
|
719b13 |
|
|
|
719b13 |
Some of params->has_* = true are missing in migration_instance_init, this
|
|
|
719b13 |
causes migrate_params_check() to skip some tests, allowing some
|
|
|
719b13 |
unsupported scenarios.
|
|
|
719b13 |
|
|
|
719b13 |
Fix this by adding all missing params->has_* = true in
|
|
|
719b13 |
migration_instance_init().
|
|
|
719b13 |
|
|
|
719b13 |
Fixes: 69ef1f36b0 ("migration: define 'tls-creds' and 'tls-hostname' migration parameters")
|
|
|
719b13 |
Fixes: 1d58872a91 ("migration: do not wait for free thread")
|
|
|
719b13 |
Fixes: d2f1d29b95 ("migration: add support for a "tls-authz" migration parameter")
|
|
|
719b13 |
Signed-off-by: Leonardo Bras <leobras@redhat.com>
|
|
|
719b13 |
Message-Id: <20220726010235.342927-1-leobras@redhat.com>
|
|
|
719b13 |
Reviewed-by: Peter Xu <peterx@redhat.com>
|
|
|
719b13 |
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
|
|
|
719b13 |
(cherry picked from commit df67aa3e61e2c83459da7d815962d9706f1528fc)
|
|
|
719b13 |
Signed-off-by: Leonardo Bras <leobras@redhat.com>
|
|
|
719b13 |
---
|
|
|
719b13 |
migration/migration.c | 4 ++++
|
|
|
719b13 |
1 file changed, 4 insertions(+)
|
|
|
719b13 |
|
|
|
719b13 |
diff --git a/migration/migration.c b/migration/migration.c
|
|
|
719b13 |
index b1fe50a749..02f962ead0 100644
|
|
|
719b13 |
--- a/migration/migration.c
|
|
|
719b13 |
+++ b/migration/migration.c
|
|
|
719b13 |
@@ -4337,6 +4337,7 @@ static void migration_instance_init(Object *obj)
|
|
|
719b13 |
/* Set has_* up only for parameter checks */
|
|
|
719b13 |
params->has_compress_level = true;
|
|
|
719b13 |
params->has_compress_threads = true;
|
|
|
719b13 |
+ params->has_compress_wait_thread = true;
|
|
|
719b13 |
params->has_decompress_threads = true;
|
|
|
719b13 |
params->has_throttle_trigger_threshold = true;
|
|
|
719b13 |
params->has_cpu_throttle_initial = true;
|
|
|
719b13 |
@@ -4357,6 +4358,9 @@ static void migration_instance_init(Object *obj)
|
|
|
719b13 |
params->has_announce_max = true;
|
|
|
719b13 |
params->has_announce_rounds = true;
|
|
|
719b13 |
params->has_announce_step = true;
|
|
|
719b13 |
+ params->has_tls_creds = true;
|
|
|
719b13 |
+ params->has_tls_hostname = true;
|
|
|
719b13 |
+ params->has_tls_authz = true;
|
|
|
719b13 |
|
|
|
719b13 |
qemu_sem_init(&ms->postcopy_pause_sem, 0);
|
|
|
719b13 |
qemu_sem_init(&ms->postcopy_pause_rp_sem, 0);
|
|
|
719b13 |
--
|
|
|
719b13 |
2.35.3
|
|
|
719b13 |
|