[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 03/10] migration/rdma: Unfold ram_control_after_iterate()
|
From: |
Juan Quintela |
|
Subject: |
[PATCH v3 03/10] migration/rdma: Unfold ram_control_after_iterate() |
|
Date: |
Tue, 9 May 2023 14:06:53 +0200 |
Once there:
- Remove unused data parameter
- unfold it in its callers
- change all callers to call qemu_rdma_registration_stop()
Signed-off-by: Juan Quintela <quintela@redhat.com>
---
migration/qemu-file.c | 12 ------------
migration/qemu-file.h | 2 --
migration/ram.c | 17 ++++++++++++++---
migration/rdma.c | 6 ++----
migration/rdma.h | 2 ++
5 files changed, 18 insertions(+), 21 deletions(-)
diff --git a/migration/qemu-file.c b/migration/qemu-file.c
index 6243d6ac59..918df83035 100644
--- a/migration/qemu-file.c
+++ b/migration/qemu-file.c
@@ -303,18 +303,6 @@ void qemu_fflush(QEMUFile *f)
f->iovcnt = 0;
}
-void ram_control_after_iterate(QEMUFile *f, uint64_t flags)
-{
- int ret = 0;
-
- if (f->hooks && f->hooks->after_ram_iterate) {
- ret = f->hooks->after_ram_iterate(f, flags, NULL);
- if (ret < 0) {
- qemu_file_set_error(f, ret);
- }
- }
-}
-
void ram_control_load_hook(QEMUFile *f, uint64_t flags, void *data)
{
if (f->hooks && f->hooks->hook_ram_load) {
diff --git a/migration/qemu-file.h b/migration/qemu-file.h
index ced2202137..323af5682f 100644
--- a/migration/qemu-file.h
+++ b/migration/qemu-file.h
@@ -55,7 +55,6 @@ typedef int (QEMURamSaveFunc)(QEMUFile *f,
size_t size);
typedef struct QEMUFileHooks {
- QEMURamHookFunc *after_ram_iterate;
QEMURamHookFunc *hook_ram_load;
QEMURamSaveFunc *save_page;
} QEMUFileHooks;
@@ -130,7 +129,6 @@ void qemu_fflush(QEMUFile *f);
void qemu_file_set_blocking(QEMUFile *f, bool block);
int qemu_file_get_to_fd(QEMUFile *f, int fd, size_t size);
-void ram_control_after_iterate(QEMUFile *f, uint64_t flags);
void ram_control_load_hook(QEMUFile *f, uint64_t flags, void *data);
/* Whenever this is found in the data stream, the flags
diff --git a/migration/ram.c b/migration/ram.c
index a8acabe64c..2b36e802c4 100644
--- a/migration/ram.c
+++ b/migration/ram.c
@@ -3052,7 +3052,11 @@ static int ram_save_setup(QEMUFile *f, void *opaque)
if (ret < 0) {
qemu_file_set_error(f, ret);
}
- ram_control_after_iterate(f, RAM_CONTROL_SETUP);
+
+ ret = qemu_rdma_registration_stop(f, RAM_CONTROL_SETUP);
+ if (ret < 0) {
+ qemu_file_set_error(f, ret);
+ }
migration_ops = g_malloc0(sizeof(MigrationOps));
migration_ops->ram_save_target_page = ram_save_target_page_legacy;
@@ -3174,7 +3178,10 @@ static int ram_save_iterate(QEMUFile *f, void *opaque)
* Must occur before EOS (or any QEMUFile operation)
* because of RDMA protocol.
*/
- ram_control_after_iterate(f, RAM_CONTROL_ROUND);
+ ret = qemu_rdma_registration_stop(f, RAM_CONTROL_ROUND);
+ if (ret < 0) {
+ qemu_file_set_error(f, ret);
+ }
out:
if (ret >= 0
@@ -3248,7 +3255,11 @@ static int ram_save_complete(QEMUFile *f, void *opaque)
qemu_mutex_unlock(&rs->bitmap_mutex);
ram_flush_compressed_data(rs);
- ram_control_after_iterate(f, RAM_CONTROL_FINISH);
+
+ int ret = qemu_rdma_registration_stop(f, RAM_CONTROL_FINISH);
+ if (ret < 0) {
+ qemu_file_set_error(f, ret);
+ }
}
if (ret < 0) {
diff --git a/migration/rdma.c b/migration/rdma.c
index 421a061278..3707230554 100644
--- a/migration/rdma.c
+++ b/migration/rdma.c
@@ -3892,15 +3892,14 @@ int qemu_rdma_registration_start(QEMUFile *f, uint64_t
flags)
* Inform dest that dynamic registrations are done for now.
* First, flush writes, if any.
*/
-static int qemu_rdma_registration_stop(QEMUFile *f,
- uint64_t flags, void *data)
+int qemu_rdma_registration_stop(QEMUFile *f, uint64_t flags)
{
QIOChannelRDMA *rioc = QIO_CHANNEL_RDMA(qemu_file_get_ioc(f));
RDMAContext *rdma;
RDMAControlHeader head = { .len = 0, .repeat = 1 };
int ret = 0;
- if (migration_in_postcopy()) {
+ if (!migrate_rdma() || migration_in_postcopy()) {
return 0;
}
@@ -4007,7 +4006,6 @@ static const QEMUFileHooks rdma_read_hooks = {
};
static const QEMUFileHooks rdma_write_hooks = {
- .after_ram_iterate = qemu_rdma_registration_stop,
.save_page = qemu_rdma_save_page,
};
diff --git a/migration/rdma.h b/migration/rdma.h
index 901c829c8b..a16a8d8bc6 100644
--- a/migration/rdma.h
+++ b/migration/rdma.h
@@ -25,7 +25,9 @@ void rdma_start_incoming_migration(const char *host_port,
Error **errp);
#ifdef CONFIG_RDMA
int qemu_rdma_registration_start(QEMUFile *f, uint64_t flags);
+int qemu_rdma_registration_stop(QEMUFile *f, uint64_t flags);
#else
int qemu_rdma_registration_start(QEMUFile *f, uint64_t flags) { return 0; }
+int qemu_rdma_registration_stop(QEMUFile *f, uint64_t flags) { return 0; }
#endif
#endif
--
2.40.0
- [PATCH v3 00/10] migration: Remove QEMUFileHooks, Juan Quintela, 2023/05/09
- [PATCH v3 01/10] migration: Create migrate_rdma(), Juan Quintela, 2023/05/09
- [PATCH v3 03/10] migration/rdma: Unfold ram_control_after_iterate(),
Juan Quintela <=
- [PATCH v3 02/10] migration/rdma: Unfold ram_control_before_iterate(), Juan Quintela, 2023/05/09
- [PATCH v3 04/10] migration/rdma: Remove all uses of RAM_CONTROL_HOOK, Juan Quintela, 2023/05/09
- [PATCH v3 06/10] migration/rdma: Create rdma_control_save_page(), Juan Quintela, 2023/05/09
- [PATCH v3 07/10] qemu-file: Remove QEMUFileHooks, Juan Quintela, 2023/05/09
- [PATCH v3 05/10] migration/rdma: Unfold hook_ram_load(), Juan Quintela, 2023/05/09
- [PATCH v3 09/10] migration/rdma: Remove qemu_ prefix from exported functions, Juan Quintela, 2023/05/09
- [PATCH v3 10/10] migration/rdma: Check sooner if we are in postcopy for save_page(), Juan Quintela, 2023/05/09
- [PATCH v3 08/10] migration/rdma: Move rdma constants from qemu-file.h to rdma.h, Juan Quintela, 2023/05/09
- Re: [PATCH v3 00/10] migration: Remove QEMUFileHooks, Peter Xu, 2023/05/26