mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-12-11 16:00:50 -07:00
multifd: Make multifd_save_setup() get an Error parameter
Signed-off-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
This commit is contained in:
parent
857a4bbb86
commit
00f4b572e6
3 changed files with 5 additions and 3 deletions
|
|
@ -3367,6 +3367,7 @@ static void *migration_thread(void *opaque)
|
|||
|
||||
void migrate_fd_connect(MigrationState *s, Error *error_in)
|
||||
{
|
||||
Error *local_err = NULL;
|
||||
int64_t rate_limit;
|
||||
bool resume = s->state == MIGRATION_STATUS_POSTCOPY_PAUSED;
|
||||
|
||||
|
|
@ -3415,7 +3416,8 @@ void migrate_fd_connect(MigrationState *s, Error *error_in)
|
|||
return;
|
||||
}
|
||||
|
||||
if (multifd_save_setup() != 0) {
|
||||
if (multifd_save_setup(&local_err) != 0) {
|
||||
error_report_err(local_err);
|
||||
migrate_set_state(&s->state, MIGRATION_STATUS_SETUP,
|
||||
MIGRATION_STATUS_FAILED);
|
||||
migrate_fd_cleanup(s);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue