4841a6
From 8aecb49fdd771c5819fccc9e750b2e9cd4e94b58 Mon Sep 17 00:00:00 2001
719b13
From: Leonardo Bras <leobras@redhat.com>
719b13
Date: Mon, 25 Jul 2022 22:02:35 -0300
4841a6
Subject: [PATCH 7/9] 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>
4841a6
RH-MergeRequest: 201: Zero-copy-send fixes + improvements
4841a6
RH-Commit: [7/8] fb622e5b88e14eb859d4903d9c088ba6ca63fc81
4841a6
RH-Bugzilla: 2110203
719b13
RH-Acked-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
719b13
RH-Acked-by: Peter Xu <peterx@redhat.com>
4841a6
RH-Acked-by: Miroslav Rezanina <mrezanin@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
4841a6
index 35b3197eff..51e6726dac 100644
719b13
--- a/migration/migration.c
719b13
+++ b/migration/migration.c
4841a6
@@ -4334,6 +4334,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;
4841a6
@@ -4354,6 +4355,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
-- 
4841a6
2.31.1
719b13