Skip to content

Commit

Permalink
migration/postcopy: wait for decompress thread in precopy
Browse files Browse the repository at this point in the history
Compress is not supported with postcopy, it is safe to wait for
decompress thread just in precopy.

This is a preparation for later patch.

Signed-off-by: Wei Yang <richardw.yang@linux.intel.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Juan Quintela <quintela@redhat.com>
  • Loading branch information
Wei Yang authored and Juan Quintela committed Jan 20, 2020
1 parent 2e36bc1 commit ca1a6b7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions migration/ram.c
Expand Up @@ -4421,6 +4421,7 @@ static int ram_load_precopy(QEMUFile *f)
}
}

ret |= wait_for_decompress_done();
return ret;
}

Expand Down Expand Up @@ -4452,8 +4453,6 @@ static int ram_load(QEMUFile *f, void *opaque, int version_id)
} else {
ret = ram_load_precopy(f);
}

ret |= wait_for_decompress_done();
}
trace_ram_load_complete(ret, seq_iter);

Expand Down

0 comments on commit ca1a6b7

Please sign in to comment.