mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-12-23 07:58:36 -07:00
migration: Don't use INT64_MAX for unlimited rate
Define and use RATE_LIMIT_DISABLED instead. Signed-off-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Harsh Prateek Bora <harshpb@linux.ibm.com> Message-Id: <20230515195709.63843-2-quintela@redhat.com>
This commit is contained in:
parent
d0a14a2ba0
commit
8e4b2a7059
3 changed files with 13 additions and 3 deletions
|
|
@ -2304,7 +2304,7 @@ static void migration_completion(MigrationState *s)
|
|||
* them if migration fails or is cancelled.
|
||||
*/
|
||||
s->block_inactive = !migrate_colo();
|
||||
qemu_file_set_rate_limit(s->to_dst_file, INT64_MAX);
|
||||
qemu_file_set_rate_limit(s->to_dst_file, RATE_LIMIT_DISABLED);
|
||||
ret = qemu_savevm_state_complete_precopy(s->to_dst_file, false,
|
||||
s->block_inactive);
|
||||
}
|
||||
|
|
@ -3048,7 +3048,7 @@ static void *bg_migration_thread(void *opaque)
|
|||
rcu_register_thread();
|
||||
object_ref(OBJECT(s));
|
||||
|
||||
qemu_file_set_rate_limit(s->to_dst_file, INT64_MAX);
|
||||
qemu_file_set_rate_limit(s->to_dst_file, RATE_LIMIT_DISABLED);
|
||||
|
||||
setup_start = qemu_clock_get_ms(QEMU_CLOCK_HOST);
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue