[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 08/11] Removed the qemu_fclose() in colo_process_incoming_thread
From: |
Juan Quintela |
Subject: |
[PULL 08/11] Removed the qemu_fclose() in colo_process_incoming_thread |
Date: |
Wed, 3 Nov 2021 09:46:02 +0100 |
From: "Rao, Lei" <lei.rao@intel.com>
After the live migration, the related fd will be cleanup in
migration_incoming_state_destroy(). So, the qemu_close()
in colo_process_incoming_thread is not necessary.
Signed-off-by: Lei Rao <lei.rao@intel.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Juan Quintela <quintela@redhat.com>
---
migration/colo.c | 5 -----
1 file changed, 5 deletions(-)
diff --git a/migration/colo.c b/migration/colo.c
index 907241ab5c..71fc82a040 100644
--- a/migration/colo.c
+++ b/migration/colo.c
@@ -919,11 +919,6 @@ out:
/* Hope this not to be too long to loop here */
qemu_sem_wait(&mis->colo_incoming_sem);
qemu_sem_destroy(&mis->colo_incoming_sem);
- /* Must be called after failover BH is completed */
- if (mis->to_src_file) {
- qemu_fclose(mis->to_src_file);
- mis->to_src_file = NULL;
- }
rcu_unregister_thread();
return NULL;
--
2.33.1
- [PULL 00/11] Migration 20211102 patches, Juan Quintela, 2021/11/03
- [PULL 08/11] Removed the qemu_fclose() in colo_process_incoming_thread,
Juan Quintela <=
- [PULL 09/11] Changed the last-mode to none of first start COLO, Juan Quintela, 2021/11/03
- [PULL 01/11] migration: provide an error message to migration_cancel(), Juan Quintela, 2021/11/03
- [PULL 02/11] migration: initialise compression_counters for a new migration, Juan Quintela, 2021/11/03
- [PULL 05/11] Fixed qemu crash when guest power off in COLO mode, Juan Quintela, 2021/11/03
- [PULL 10/11] colo: Don't dump colo cache if dump-guest-core=off, Juan Quintela, 2021/11/03
- [PULL 11/11] Optimized the function of fill_connection_key., Juan Quintela, 2021/11/03
- [PULL 06/11] Fixed SVM hang when do failover before PVM crash, Juan Quintela, 2021/11/03
- [PULL 07/11] colo: fixed 'Segmentation fault' when the simplex mode PVM poweroff, Juan Quintela, 2021/11/03
- [PULL 04/11] Some minor optimizations for COLO, Juan Quintela, 2021/11/03