Lines Matching refs:run_start
2450 unsigned long run_start = find_next_zero_bit(bitmap, range, 0); in ram_postcopy_migrated_memory_release() local
2452 while (run_start < range) { in ram_postcopy_migrated_memory_release()
2453 unsigned long run_end = find_next_bit(bitmap, range, run_start + 1); in ram_postcopy_migrated_memory_release()
2455 ((ram_addr_t)run_start) << TARGET_PAGE_BITS, in ram_postcopy_migrated_memory_release()
2456 ((ram_addr_t)(run_end - run_start)) in ram_postcopy_migrated_memory_release()
2458 run_start = find_next_zero_bit(bitmap, range, run_end + 1); in ram_postcopy_migrated_memory_release()
2554 unsigned long run_start; in postcopy_chunk_hostpages_pass() local
2562 run_start = find_next_bit(bitmap, pages, 0); in postcopy_chunk_hostpages_pass()
2564 while (run_start < pages) { in postcopy_chunk_hostpages_pass()
2570 if (QEMU_IS_ALIGNED(run_start, host_ratio)) { in postcopy_chunk_hostpages_pass()
2572 run_start = find_next_zero_bit(bitmap, pages, run_start + 1); in postcopy_chunk_hostpages_pass()
2580 if (!QEMU_IS_ALIGNED(run_start, host_ratio)) { in postcopy_chunk_hostpages_pass()
2582 unsigned long fixup_start_addr = QEMU_ALIGN_DOWN(run_start, in postcopy_chunk_hostpages_pass()
2584 run_start = QEMU_ALIGN_UP(run_start, host_ratio); in postcopy_chunk_hostpages_pass()
2598 run_start = find_next_bit(bitmap, pages, run_start); in postcopy_chunk_hostpages_pass()