[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v4 04/10] Remove migrate_set_block_enabled in checkpoint
From: |
leirao |
Subject: |
[PATCH v4 04/10] Remove migrate_set_block_enabled in checkpoint |
Date: |
Thu, 25 Mar 2021 10:24:45 +0800 |
From: "Rao, Lei" <lei.rao@intel.com>
We can detect disk migration in migrate_prepare, if disk migration
is enabled in COLO mode, we can directly report an error.and there
is no need to disable block migration at every checkpoint.
Signed-off-by: Lei Rao <lei.rao@intel.com>
Signed-off-by: Zhang Chen <chen.zhang@intel.com>
Reviewed-by: Li Zhijian <lizhijian@fujitsu.com>
---
migration/colo.c | 6 ------
migration/migration.c | 4 ++++
2 files changed, 4 insertions(+), 6 deletions(-)
diff --git a/migration/colo.c b/migration/colo.c
index de27662..1aaf316 100644
--- a/migration/colo.c
+++ b/migration/colo.c
@@ -435,12 +435,6 @@ static int colo_do_checkpoint_transaction(MigrationState
*s,
if (failover_get_state() != FAILOVER_STATUS_NONE) {
goto out;
}
-
- /* Disable block migration */
- migrate_set_block_enabled(false, &local_err);
- if (local_err) {
- goto out;
- }
qemu_mutex_lock_iothread();
#ifdef CONFIG_REPLICATION
diff --git a/migration/migration.c b/migration/migration.c
index ca8b97b..4578f22 100644
--- a/migration/migration.c
+++ b/migration/migration.c
@@ -2219,6 +2219,10 @@ static bool migrate_prepare(MigrationState *s, bool blk,
bool blk_inc,
}
if (blk || blk_inc) {
+ if (migrate_colo_enabled()) {
+ error_setg(errp, "No disk migration is required in COLO mode");
+ return false;
+ }
if (migrate_use_block() || migrate_use_block_incremental()) {
error_setg(errp, "Command options are incompatible with "
"current migration capabilities");
--
1.8.3.1
- [PATCH v4 00/10] Fixed some bugs and optimized some codes for COLO, leirao, 2021/03/24
- [PATCH v4 01/10] Remove some duplicate trace code., leirao, 2021/03/24
- [PATCH v4 02/10] Fix the qemu crash when guest shutdown during checkpoint, leirao, 2021/03/24
- [PATCH v4 03/10] Optimize the function of filter_send, leirao, 2021/03/24
- [PATCH v4 04/10] Remove migrate_set_block_enabled in checkpoint,
leirao <=
- [PATCH v4 05/10] Add a function named packet_new_nocopy for COLO., leirao, 2021/03/24
- [PATCH v4 06/10] Add the function of colo_compare_cleanup, leirao, 2021/03/24
- [PATCH v4 07/10] Reset the auto-converge counter at every checkpoint., leirao, 2021/03/24
- [PATCH v4 08/10] Reduce the PVM stop time during Checkpoint, leirao, 2021/03/24
- [PATCH v4 09/10] Add the function of colo_bitmap_clear_diry., leirao, 2021/03/24
- [PATCH v4 10/10] Fixed calculation error of pkt->header_size in fill_pkt_tcp_info(), leirao, 2021/03/24