mirror of
https://github.com/qemu/qemu.git
synced 2025-08-09 01:50:43 +00:00
migration/postcopy: reduce one operation to calculate fixup_start_addr
Use the same way for run_end to calculate run_start, which saves one operation. Signed-off-by: Wei Yang <richardw.yang@linux.intel.com> Message-Id: <20190710050814.31344-2-richardw.yang@linux.intel.com> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
This commit is contained in:
parent
a162b572e9
commit
e927a03317
@ -2973,10 +2973,12 @@ static void postcopy_chunk_hostpages_pass(MigrationState *ms, bool unsent_pass,
|
|||||||
host_offset = run_start % host_ratio;
|
host_offset = run_start % host_ratio;
|
||||||
if (host_offset) {
|
if (host_offset) {
|
||||||
do_fixup = true;
|
do_fixup = true;
|
||||||
run_start -= host_offset;
|
fixup_start_addr = run_start - host_offset;
|
||||||
fixup_start_addr = run_start;
|
/*
|
||||||
/* For the next pass */
|
* This host page has gone, the next loop iteration starts
|
||||||
run_start = run_start + host_ratio;
|
* from after the fixup
|
||||||
|
*/
|
||||||
|
run_start = fixup_start_addr + host_ratio;
|
||||||
} else {
|
} else {
|
||||||
/* Find the end of this run */
|
/* Find the end of this run */
|
||||||
unsigned long run_end;
|
unsigned long run_end;
|
||||||
|
Loading…
Reference in New Issue
Block a user