Lines Matching refs:run_start
2420 unsigned long run_start = find_next_zero_bit(bitmap, range, 0); in ram_postcopy_migrated_memory_release() local
2422 while (run_start < range) { in ram_postcopy_migrated_memory_release()
2423 unsigned long run_end = find_next_bit(bitmap, range, run_start + 1); in ram_postcopy_migrated_memory_release()
2425 ((ram_addr_t)run_start) << TARGET_PAGE_BITS, in ram_postcopy_migrated_memory_release()
2426 ((ram_addr_t)(run_end - run_start)) in ram_postcopy_migrated_memory_release()
2428 run_start = find_next_zero_bit(bitmap, range, run_end + 1); in ram_postcopy_migrated_memory_release()
2524 unsigned long run_start; in postcopy_chunk_hostpages_pass() local
2532 run_start = find_next_bit(bitmap, pages, 0); in postcopy_chunk_hostpages_pass()
2534 while (run_start < pages) { in postcopy_chunk_hostpages_pass()
2540 if (QEMU_IS_ALIGNED(run_start, host_ratio)) { in postcopy_chunk_hostpages_pass()
2542 run_start = find_next_zero_bit(bitmap, pages, run_start + 1); in postcopy_chunk_hostpages_pass()
2550 if (!QEMU_IS_ALIGNED(run_start, host_ratio)) { in postcopy_chunk_hostpages_pass()
2552 unsigned long fixup_start_addr = QEMU_ALIGN_DOWN(run_start, in postcopy_chunk_hostpages_pass()
2554 run_start = QEMU_ALIGN_UP(run_start, host_ratio); in postcopy_chunk_hostpages_pass()
2568 run_start = find_next_bit(bitmap, pages, run_start); in postcopy_chunk_hostpages_pass()