6ee9df2
From 145b630767dbc7020ddf39b20075f4691f71321a Mon Sep 17 00:00:00 2001
6ee9df2
From: Juan Quintela <quintela@redhat.com>
6ee9df2
Date: Wed, 1 Mar 2023 22:25:47 +0100
6ee9df2
Subject: [PATCH 31/56] migration: Move migrate_use_return() to options.c
6ee9df2
MIME-Version: 1.0
6ee9df2
Content-Type: text/plain; charset=UTF-8
6ee9df2
Content-Transfer-Encoding: 8bit
6ee9df2
6ee9df2
RH-Author: Peter Xu <peterx@redhat.com>
6ee9df2
RH-MergeRequest: 162: migration: Pretty failures for postcopy on unsupported memory types
6ee9df2
RH-Bugzilla: 2057267
6ee9df2
RH-Acked-by: Leonardo BrĂ¡s <leobras@redhat.com>
6ee9df2
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
6ee9df2
RH-Acked-by: quintela1 <quintela@redhat.com>
6ee9df2
RH-Commit: [30/50] 5cc150188bcc61b69ea0844253597594ab18fc13 (peterx/qemu-kvm)
6ee9df2
6ee9df2
Once that we are there, we rename the function to migrate_return_path()
6ee9df2
to be consistent with all other capabilities.
6ee9df2
6ee9df2
Signed-off-by: Juan Quintela <quintela@redhat.com>
6ee9df2
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
6ee9df2
(cherry picked from commit 38ad1110e368bf91453c0abbd657224d57b65d47)
6ee9df2
Signed-off-by: Peter Xu <peterx@redhat.com>
6ee9df2
---
6ee9df2
 migration/migration.c | 11 +----------
6ee9df2
 migration/migration.h |  1 -
6ee9df2
 migration/options.c   |  9 +++++++++
6ee9df2
 migration/options.h   |  1 +
6ee9df2
 migration/rdma.c      |  6 +++---
6ee9df2
 5 files changed, 14 insertions(+), 14 deletions(-)
6ee9df2
6ee9df2
diff --git a/migration/migration.c b/migration/migration.c
6ee9df2
index 96f82bd165..f7facecd66 100644
6ee9df2
--- a/migration/migration.c
6ee9df2
+++ b/migration/migration.c
6ee9df2
@@ -2622,15 +2622,6 @@ static int64_t migrate_max_postcopy_bandwidth(void)
6ee9df2
     return s->parameters.max_postcopy_bandwidth;
6ee9df2
 }
6ee9df2
 
6ee9df2
-bool migrate_use_return_path(void)
6ee9df2
-{
6ee9df2
-    MigrationState *s;
6ee9df2
-
6ee9df2
-    s = migrate_get_current();
6ee9df2
-
6ee9df2
-    return s->capabilities[MIGRATION_CAPABILITY_RETURN_PATH];
6ee9df2
-}
6ee9df2
-
6ee9df2
 bool migrate_use_block_incremental(void)
6ee9df2
 {
6ee9df2
     MigrationState *s;
6ee9df2
@@ -4175,7 +4166,7 @@ void migrate_fd_connect(MigrationState *s, Error *error_in)
6ee9df2
      * precopy, only if user specified "return-path" capability would
6ee9df2
      * QEMU uses the return path.
6ee9df2
      */
6ee9df2
-    if (migrate_postcopy_ram() || migrate_use_return_path()) {
6ee9df2
+    if (migrate_postcopy_ram() || migrate_return_path()) {
6ee9df2
         if (open_return_path_on_source(s, !resume)) {
6ee9df2
             error_report("Unable to open return-path for postcopy");
6ee9df2
             migrate_set_state(&s->state, s->state, MIGRATION_STATUS_FAILED);
6ee9df2
diff --git a/migration/migration.h b/migration/migration.h
6ee9df2
index d4b68b08a5..24184622a8 100644
6ee9df2
--- a/migration/migration.h
6ee9df2
+++ b/migration/migration.h
6ee9df2
@@ -459,7 +459,6 @@ uint64_t migrate_xbzrle_cache_size(void);
6ee9df2
 
6ee9df2
 bool migrate_use_block_incremental(void);
6ee9df2
 int migrate_max_cpu_throttle(void);
6ee9df2
-bool migrate_use_return_path(void);
6ee9df2
 
6ee9df2
 uint64_t ram_get_total_transferred_pages(void);
6ee9df2
 
6ee9df2
diff --git a/migration/options.c b/migration/options.c
6ee9df2
index fe1eadeed6..2003e413da 100644
6ee9df2
--- a/migration/options.c
6ee9df2
+++ b/migration/options.c
6ee9df2
@@ -147,6 +147,15 @@ bool migrate_release_ram(void)
6ee9df2
     return s->capabilities[MIGRATION_CAPABILITY_RELEASE_RAM];
6ee9df2
 }
6ee9df2
 
6ee9df2
+bool migrate_return_path(void)
6ee9df2
+{
6ee9df2
+    MigrationState *s;
6ee9df2
+
6ee9df2
+    s = migrate_get_current();
6ee9df2
+
6ee9df2
+    return s->capabilities[MIGRATION_CAPABILITY_RETURN_PATH];
6ee9df2
+}
6ee9df2
+
6ee9df2
 bool migrate_validate_uuid(void)
6ee9df2
 {
6ee9df2
     MigrationState *s;
6ee9df2
diff --git a/migration/options.h b/migration/options.h
6ee9df2
index e985a5233e..316efd1063 100644
6ee9df2
--- a/migration/options.h
6ee9df2
+++ b/migration/options.h
6ee9df2
@@ -31,6 +31,7 @@ bool migrate_postcopy_blocktime(void);
6ee9df2
 bool migrate_postcopy_preempt(void);
6ee9df2
 bool migrate_postcopy_ram(void);
6ee9df2
 bool migrate_release_ram(void);
6ee9df2
+bool migrate_return_path(void);
6ee9df2
 bool migrate_validate_uuid(void);
6ee9df2
 bool migrate_xbzrle(void);
6ee9df2
 bool migrate_zero_blocks(void);
6ee9df2
diff --git a/migration/rdma.c b/migration/rdma.c
6ee9df2
index f35f021963..bf55e2f163 100644
6ee9df2
--- a/migration/rdma.c
6ee9df2
+++ b/migration/rdma.c
6ee9df2
@@ -3373,7 +3373,7 @@ static int qemu_rdma_accept(RDMAContext *rdma)
6ee9df2
      * initialize the RDMAContext for return path for postcopy after first
6ee9df2
      * connection request reached.
6ee9df2
      */
6ee9df2
-    if ((migrate_postcopy() || migrate_use_return_path())
6ee9df2
+    if ((migrate_postcopy() || migrate_return_path())
6ee9df2
         && !rdma->is_return_path) {
6ee9df2
         rdma_return_path = qemu_rdma_data_init(rdma->host_port, NULL);
6ee9df2
         if (rdma_return_path == NULL) {
6ee9df2
@@ -3456,7 +3456,7 @@ static int qemu_rdma_accept(RDMAContext *rdma)
6ee9df2
     }
6ee9df2
 
6ee9df2
     /* Accept the second connection request for return path */
6ee9df2
-    if ((migrate_postcopy() || migrate_use_return_path())
6ee9df2
+    if ((migrate_postcopy() || migrate_return_path())
6ee9df2
         && !rdma->is_return_path) {
6ee9df2
         qemu_set_fd_handler(rdma->channel->fd, rdma_accept_incoming_migration,
6ee9df2
                             NULL,
6ee9df2
@@ -4193,7 +4193,7 @@ void rdma_start_outgoing_migration(void *opaque,
6ee9df2
     }
6ee9df2
 
6ee9df2
     /* RDMA postcopy need a separate queue pair for return path */
6ee9df2
-    if (migrate_postcopy() || migrate_use_return_path()) {
6ee9df2
+    if (migrate_postcopy() || migrate_return_path()) {
6ee9df2
         rdma_return_path = qemu_rdma_data_init(host_port, errp);
6ee9df2
 
6ee9df2
         if (rdma_return_path == NULL) {
6ee9df2
-- 
6ee9df2
2.39.1
6ee9df2