mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 09:13:55 -06:00
migration: Fix migrate_test_apply for multifd parameters
They were missing when introduced on the tree Signed-off-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Peter Xu <peterx@redhat.com>
This commit is contained in:
parent
e822e81e35
commit
5e7577a101
1 changed files with 6 additions and 0 deletions
|
@ -865,6 +865,12 @@ static void migrate_params_test_apply(MigrateSetParameters *params,
|
|||
if (params->has_block_incremental) {
|
||||
dest->block_incremental = params->block_incremental;
|
||||
}
|
||||
if (params->has_x_multifd_channels) {
|
||||
dest->x_multifd_channels = params->x_multifd_channels;
|
||||
}
|
||||
if (params->has_x_multifd_page_count) {
|
||||
dest->x_multifd_page_count = params->x_multifd_page_count;
|
||||
}
|
||||
}
|
||||
|
||||
static void migrate_params_apply(MigrateSetParameters *params)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue