]> git.proxmox.com Git - mirror_qemu.git/blame - arch_init.c
block: resize backing image during active layer commit, if needed
[mirror_qemu.git] / arch_init.c
CommitLineData
ad96090a
BS
1/*
2 * QEMU System Emulator
3 *
4 * Copyright (c) 2003-2008 Fabrice Bellard
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24#include <stdint.h>
25#include <stdarg.h>
b2e0a138 26#include <stdlib.h>
ad96090a 27#ifndef _WIN32
1c47cb16 28#include <sys/types.h>
ad96090a
BS
29#include <sys/mman.h>
30#endif
31#include "config.h"
83c9089e 32#include "monitor/monitor.h"
9c17d615 33#include "sysemu/sysemu.h"
1de7afc9
PB
34#include "qemu/bitops.h"
35#include "qemu/bitmap.h"
9c17d615 36#include "sysemu/arch_init.h"
ad96090a 37#include "audio/audio.h"
0d09e41a 38#include "hw/i386/pc.h"
a2cb15b0 39#include "hw/pci/pci.h"
0d09e41a 40#include "hw/audio/audio.h"
9c17d615 41#include "sysemu/kvm.h"
caf71f86 42#include "migration/migration.h"
0d09e41a 43#include "hw/i386/smbios.h"
022c62cb 44#include "exec/address-spaces.h"
0d09e41a 45#include "hw/audio/pcspk.h"
caf71f86 46#include "migration/page_cache.h"
1de7afc9 47#include "qemu/config-file.h"
99afc91d 48#include "qmp-commands.h"
3c12193d 49#include "trace.h"
0d6d3c87 50#include "exec/cpu-all.h"
12291ec1 51#include "exec/ram_addr.h"
0445259b 52#include "hw/acpi/acpi.h"
aa8dc044 53#include "qemu/host-utils.h"
ad96090a 54
3a697f69
OW
55#ifdef DEBUG_ARCH_INIT
56#define DPRINTF(fmt, ...) \
57 do { fprintf(stdout, "arch_init: " fmt, ## __VA_ARGS__); } while (0)
58#else
59#define DPRINTF(fmt, ...) \
60 do { } while (0)
61#endif
62
ad96090a
BS
63#ifdef TARGET_SPARC
64int graphic_width = 1024;
65int graphic_height = 768;
66int graphic_depth = 8;
67#else
68int graphic_width = 800;
69int graphic_height = 600;
f1ff0e89 70int graphic_depth = 32;
ad96090a
BS
71#endif
72
ad96090a
BS
73
74#if defined(TARGET_ALPHA)
75#define QEMU_ARCH QEMU_ARCH_ALPHA
76#elif defined(TARGET_ARM)
77#define QEMU_ARCH QEMU_ARCH_ARM
78#elif defined(TARGET_CRIS)
79#define QEMU_ARCH QEMU_ARCH_CRIS
80#elif defined(TARGET_I386)
81#define QEMU_ARCH QEMU_ARCH_I386
82#elif defined(TARGET_M68K)
83#define QEMU_ARCH QEMU_ARCH_M68K
81ea0e13
MW
84#elif defined(TARGET_LM32)
85#define QEMU_ARCH QEMU_ARCH_LM32
ad96090a
BS
86#elif defined(TARGET_MICROBLAZE)
87#define QEMU_ARCH QEMU_ARCH_MICROBLAZE
88#elif defined(TARGET_MIPS)
89#define QEMU_ARCH QEMU_ARCH_MIPS
d15a9c23
AG
90#elif defined(TARGET_MOXIE)
91#define QEMU_ARCH QEMU_ARCH_MOXIE
e67db06e
JL
92#elif defined(TARGET_OPENRISC)
93#define QEMU_ARCH QEMU_ARCH_OPENRISC
ad96090a
BS
94#elif defined(TARGET_PPC)
95#define QEMU_ARCH QEMU_ARCH_PPC
96#elif defined(TARGET_S390X)
97#define QEMU_ARCH QEMU_ARCH_S390X
98#elif defined(TARGET_SH4)
99#define QEMU_ARCH QEMU_ARCH_SH4
100#elif defined(TARGET_SPARC)
101#define QEMU_ARCH QEMU_ARCH_SPARC
2328826b
MF
102#elif defined(TARGET_XTENSA)
103#define QEMU_ARCH QEMU_ARCH_XTENSA
4f23a1e6
GX
104#elif defined(TARGET_UNICORE32)
105#define QEMU_ARCH QEMU_ARCH_UNICORE32
ad96090a
BS
106#endif
107
108const uint32_t arch_type = QEMU_ARCH;
7ca1dfad
CV
109static bool mig_throttle_on;
110static int dirty_rate_high_cnt;
111static void check_guest_throttling(void);
ad96090a
BS
112
113/***********************************************************/
114/* ram save/restore */
115
d20878d2
YT
116#define RAM_SAVE_FLAG_FULL 0x01 /* Obsolete, not used anymore */
117#define RAM_SAVE_FLAG_COMPRESS 0x02
118#define RAM_SAVE_FLAG_MEM_SIZE 0x04
119#define RAM_SAVE_FLAG_PAGE 0x08
120#define RAM_SAVE_FLAG_EOS 0x10
121#define RAM_SAVE_FLAG_CONTINUE 0x20
17ad9b35 122#define RAM_SAVE_FLAG_XBZRLE 0x40
0033b8b4 123/* 0x80 is reserved in migration.h start with 0x100 next */
ad96090a 124
b5a8fe5e 125
756557de
EH
126static struct defconfig_file {
127 const char *filename;
f29a5614
EH
128 /* Indicates it is an user config file (disabled by -no-user-config) */
129 bool userconfig;
756557de 130} default_config_files[] = {
f29a5614 131 { CONFIG_QEMU_CONFDIR "/qemu.conf", true },
2e59915d 132 { CONFIG_QEMU_CONFDIR "/target-" TARGET_NAME ".conf", true },
756557de
EH
133 { NULL }, /* end of list */
134};
135
136
f29a5614 137int qemu_read_default_config_files(bool userconfig)
b5a8fe5e
EH
138{
139 int ret;
756557de 140 struct defconfig_file *f;
b5a8fe5e 141
756557de 142 for (f = default_config_files; f->filename; f++) {
f29a5614
EH
143 if (!userconfig && f->userconfig) {
144 continue;
145 }
756557de
EH
146 ret = qemu_read_config_file(f->filename);
147 if (ret < 0 && ret != -ENOENT) {
148 return ret;
149 }
b5a8fe5e 150 }
4d8b3c63 151
b5a8fe5e
EH
152 return 0;
153}
154
dc3c26a4 155static inline bool is_zero_range(uint8_t *p, uint64_t size)
ad96090a 156{
dc3c26a4 157 return buffer_find_nonzero_offset(p, size) == size;
ad96090a
BS
158}
159
17ad9b35
OW
160/* struct contains XBZRLE cache and a static page
161 used by the compression */
162static struct {
163 /* buffer used for XBZRLE encoding */
164 uint8_t *encoded_buf;
165 /* buffer for storing page content */
166 uint8_t *current_buf;
167 /* buffer used for XBZRLE decoding */
168 uint8_t *decoded_buf;
169 /* Cache for XBZRLE */
170 PageCache *cache;
171} XBZRLE = {
172 .encoded_buf = NULL,
173 .current_buf = NULL,
174 .decoded_buf = NULL,
175 .cache = NULL,
176};
177
9e1ba4cc
OW
178
179int64_t xbzrle_cache_resize(int64_t new_size)
180{
181 if (XBZRLE.cache != NULL) {
182 return cache_resize(XBZRLE.cache, new_size / TARGET_PAGE_SIZE) *
183 TARGET_PAGE_SIZE;
184 }
185 return pow2floor(new_size);
186}
187
004d4c10
OW
188/* accounting for migration statistics */
189typedef struct AccountingInfo {
190 uint64_t dup_pages;
f1c72795 191 uint64_t skipped_pages;
004d4c10
OW
192 uint64_t norm_pages;
193 uint64_t iterations;
f36d55af
OW
194 uint64_t xbzrle_bytes;
195 uint64_t xbzrle_pages;
196 uint64_t xbzrle_cache_miss;
197 uint64_t xbzrle_overflows;
004d4c10
OW
198} AccountingInfo;
199
200static AccountingInfo acct_info;
201
202static void acct_clear(void)
203{
204 memset(&acct_info, 0, sizeof(acct_info));
205}
206
207uint64_t dup_mig_bytes_transferred(void)
208{
209 return acct_info.dup_pages * TARGET_PAGE_SIZE;
210}
211
212uint64_t dup_mig_pages_transferred(void)
213{
214 return acct_info.dup_pages;
215}
216
f1c72795
PL
217uint64_t skipped_mig_bytes_transferred(void)
218{
219 return acct_info.skipped_pages * TARGET_PAGE_SIZE;
220}
221
222uint64_t skipped_mig_pages_transferred(void)
223{
224 return acct_info.skipped_pages;
225}
226
004d4c10
OW
227uint64_t norm_mig_bytes_transferred(void)
228{
229 return acct_info.norm_pages * TARGET_PAGE_SIZE;
230}
231
232uint64_t norm_mig_pages_transferred(void)
233{
234 return acct_info.norm_pages;
235}
236
f36d55af
OW
237uint64_t xbzrle_mig_bytes_transferred(void)
238{
239 return acct_info.xbzrle_bytes;
240}
241
242uint64_t xbzrle_mig_pages_transferred(void)
243{
244 return acct_info.xbzrle_pages;
245}
246
247uint64_t xbzrle_mig_pages_cache_miss(void)
248{
249 return acct_info.xbzrle_cache_miss;
250}
251
252uint64_t xbzrle_mig_pages_overflow(void)
253{
254 return acct_info.xbzrle_overflows;
255}
256
3f7d7b09
JQ
257static size_t save_block_hdr(QEMUFile *f, RAMBlock *block, ram_addr_t offset,
258 int cont, int flag)
0c51f43d 259{
3f7d7b09
JQ
260 size_t size;
261
262 qemu_put_be64(f, offset | cont | flag);
263 size = 8;
0c51f43d 264
3f7d7b09
JQ
265 if (!cont) {
266 qemu_put_byte(f, strlen(block->idstr));
267 qemu_put_buffer(f, (uint8_t *)block->idstr,
268 strlen(block->idstr));
269 size += 1 + strlen(block->idstr);
270 }
271 return size;
0c51f43d
OW
272}
273
17ad9b35
OW
274#define ENCODING_FLAG_XBZRLE 0x1
275
276static int save_xbzrle_page(QEMUFile *f, uint8_t *current_data,
277 ram_addr_t current_addr, RAMBlock *block,
dd051c72 278 ram_addr_t offset, int cont, bool last_stage)
17ad9b35
OW
279{
280 int encoded_len = 0, bytes_sent = -1;
281 uint8_t *prev_cached_page;
282
283 if (!cache_is_cached(XBZRLE.cache, current_addr)) {
dd051c72 284 if (!last_stage) {
ee0b44aa 285 cache_insert(XBZRLE.cache, current_addr, current_data);
dd051c72 286 }
f36d55af 287 acct_info.xbzrle_cache_miss++;
17ad9b35
OW
288 return -1;
289 }
290
291 prev_cached_page = get_cached_data(XBZRLE.cache, current_addr);
292
293 /* save current buffer into memory */
294 memcpy(XBZRLE.current_buf, current_data, TARGET_PAGE_SIZE);
295
296 /* XBZRLE encoding (if there is no overflow) */
297 encoded_len = xbzrle_encode_buffer(prev_cached_page, XBZRLE.current_buf,
298 TARGET_PAGE_SIZE, XBZRLE.encoded_buf,
299 TARGET_PAGE_SIZE);
300 if (encoded_len == 0) {
301 DPRINTF("Skipping unmodified page\n");
302 return 0;
303 } else if (encoded_len == -1) {
304 DPRINTF("Overflow\n");
f36d55af 305 acct_info.xbzrle_overflows++;
17ad9b35
OW
306 /* update data in the cache */
307 memcpy(prev_cached_page, current_data, TARGET_PAGE_SIZE);
308 return -1;
309 }
310
311 /* we need to update the data in the cache, in order to get the same data */
dd051c72
JQ
312 if (!last_stage) {
313 memcpy(prev_cached_page, XBZRLE.current_buf, TARGET_PAGE_SIZE);
314 }
17ad9b35
OW
315
316 /* Send XBZRLE based compressed page */
3f7d7b09 317 bytes_sent = save_block_hdr(f, block, offset, cont, RAM_SAVE_FLAG_XBZRLE);
17ad9b35
OW
318 qemu_put_byte(f, ENCODING_FLAG_XBZRLE);
319 qemu_put_be16(f, encoded_len);
320 qemu_put_buffer(f, XBZRLE.encoded_buf, encoded_len);
3f7d7b09 321 bytes_sent += encoded_len + 1 + 2;
f36d55af
OW
322 acct_info.xbzrle_pages++;
323 acct_info.xbzrle_bytes += bytes_sent;
17ad9b35
OW
324
325 return bytes_sent;
326}
327
b23a9a5c
JQ
328
329/* This is the last block that we have visited serching for dirty pages
330 */
331static RAMBlock *last_seen_block;
5f718a15
JQ
332/* This is the last block from where we have sent data */
333static RAMBlock *last_sent_block;
760e77ea 334static ram_addr_t last_offset;
c6bf8e0e
JQ
335static unsigned long *migration_bitmap;
336static uint64_t migration_dirty_pages;
f798b07f 337static uint32_t last_version;
78d07ae7 338static bool ram_bulk_stage;
760e77ea 339
4c8ae0f6
JQ
340static inline
341ram_addr_t migration_bitmap_find_and_reset_dirty(MemoryRegion *mr,
342 ram_addr_t start)
69268cde 343{
4c8ae0f6
JQ
344 unsigned long base = mr->ram_addr >> TARGET_PAGE_BITS;
345 unsigned long nr = base + (start >> TARGET_PAGE_BITS);
0851c9f7
MT
346 uint64_t mr_size = TARGET_PAGE_ALIGN(memory_region_size(mr));
347 unsigned long size = base + (mr_size >> TARGET_PAGE_BITS);
c6bf8e0e 348
70c8652b
PL
349 unsigned long next;
350
351 if (ram_bulk_stage && nr > base) {
352 next = nr + 1;
353 } else {
354 next = find_next_bit(migration_bitmap, size, nr);
355 }
69268cde 356
4c8ae0f6
JQ
357 if (next < size) {
358 clear_bit(next, migration_bitmap);
c6bf8e0e 359 migration_dirty_pages--;
69268cde 360 }
4c8ae0f6 361 return (next - base) << TARGET_PAGE_BITS;
69268cde
JQ
362}
363
791fa2a2 364static inline bool migration_bitmap_set_dirty(ram_addr_t addr)
e44d26c8 365{
c6bf8e0e 366 bool ret;
791fa2a2 367 int nr = addr >> TARGET_PAGE_BITS;
e44d26c8 368
c6bf8e0e
JQ
369 ret = test_and_set_bit(nr, migration_bitmap);
370
371 if (!ret) {
372 migration_dirty_pages++;
e44d26c8 373 }
c6bf8e0e 374 return ret;
e44d26c8
JQ
375}
376
791fa2a2
JQ
377static void migration_bitmap_sync_range(ram_addr_t start, ram_addr_t length)
378{
379 ram_addr_t addr;
aa8dc044
JQ
380 unsigned long page = BIT_WORD(start >> TARGET_PAGE_BITS);
381
382 /* start address is aligned at the start of a word? */
383 if (((page * BITS_PER_LONG) << TARGET_PAGE_BITS) == start) {
384 int k;
385 int nr = BITS_TO_LONGS(length >> TARGET_PAGE_BITS);
386 unsigned long *src = ram_list.dirty_memory[DIRTY_MEMORY_MIGRATION];
387
388 for (k = page; k < page + nr; k++) {
389 if (src[k]) {
390 unsigned long new_dirty;
391 new_dirty = ~migration_bitmap[k];
392 migration_bitmap[k] |= src[k];
393 new_dirty &= src[k];
394 migration_dirty_pages += ctpopl(new_dirty);
395 src[k] = 0;
396 }
397 }
398 } else {
399 for (addr = 0; addr < length; addr += TARGET_PAGE_SIZE) {
400 if (cpu_physical_memory_get_dirty(start + addr,
401 TARGET_PAGE_SIZE,
402 DIRTY_MEMORY_MIGRATION)) {
403 cpu_physical_memory_reset_dirty(start + addr,
404 TARGET_PAGE_SIZE,
405 DIRTY_MEMORY_MIGRATION);
406 migration_bitmap_set_dirty(start + addr);
407 }
791fa2a2
JQ
408 }
409 }
410}
411
412
32c835ba
PB
413/* Needs iothread lock! */
414
dd2df737
JQ
415static void migration_bitmap_sync(void)
416{
c6bf8e0e 417 RAMBlock *block;
c6bf8e0e 418 uint64_t num_dirty_pages_init = migration_dirty_pages;
8d017193
JQ
419 MigrationState *s = migrate_get_current();
420 static int64_t start_time;
7ca1dfad 421 static int64_t bytes_xfer_prev;
8d017193
JQ
422 static int64_t num_dirty_pages_period;
423 int64_t end_time;
7ca1dfad
CV
424 int64_t bytes_xfer_now;
425
426 if (!bytes_xfer_prev) {
427 bytes_xfer_prev = ram_bytes_transferred();
428 }
8d017193
JQ
429
430 if (!start_time) {
bc72ad67 431 start_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
8d017193 432 }
3c12193d
JQ
433
434 trace_migration_bitmap_sync_start();
1d671369 435 address_space_sync_dirty_bitmap(&address_space_memory);
c6bf8e0e 436
a3161038 437 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
791fa2a2 438 migration_bitmap_sync_range(block->mr->ram_addr, block->length);
c6bf8e0e
JQ
439 }
440 trace_migration_bitmap_sync_end(migration_dirty_pages
3c12193d 441 - num_dirty_pages_init);
8d017193 442 num_dirty_pages_period += migration_dirty_pages - num_dirty_pages_init;
bc72ad67 443 end_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME);
8d017193
JQ
444
445 /* more than 1 second = 1000 millisecons */
446 if (end_time > start_time + 1000) {
7ca1dfad
CV
447 if (migrate_auto_converge()) {
448 /* The following detection logic can be refined later. For now:
449 Check to see if the dirtied bytes is 50% more than the approx.
450 amount of bytes that just got transferred since the last time we
451 were in this routine. If that happens >N times (for now N==4)
452 we turn on the throttle down logic */
453 bytes_xfer_now = ram_bytes_transferred();
454 if (s->dirty_pages_rate &&
455 (num_dirty_pages_period * TARGET_PAGE_SIZE >
456 (bytes_xfer_now - bytes_xfer_prev)/2) &&
457 (dirty_rate_high_cnt++ > 4)) {
458 trace_migration_throttle();
459 mig_throttle_on = true;
460 dirty_rate_high_cnt = 0;
461 }
462 bytes_xfer_prev = bytes_xfer_now;
463 } else {
464 mig_throttle_on = false;
465 }
8d017193
JQ
466 s->dirty_pages_rate = num_dirty_pages_period * 1000
467 / (end_time - start_time);
90f8ae72 468 s->dirty_bytes_rate = s->dirty_pages_rate * TARGET_PAGE_SIZE;
8d017193
JQ
469 start_time = end_time;
470 num_dirty_pages_period = 0;
471 }
dd2df737
JQ
472}
473
6c779f22
OW
474/*
475 * ram_save_block: Writes a page of memory to the stream f
476 *
b823ceaa
JQ
477 * Returns: The number of bytes written.
478 * 0 means no dirty pages
6c779f22
OW
479 */
480
dd051c72 481static int ram_save_block(QEMUFile *f, bool last_stage)
ad96090a 482{
b23a9a5c 483 RAMBlock *block = last_seen_block;
e44359c3 484 ram_addr_t offset = last_offset;
4c8ae0f6 485 bool complete_round = false;
b823ceaa 486 int bytes_sent = 0;
71c510e2 487 MemoryRegion *mr;
17ad9b35 488 ram_addr_t current_addr;
ad96090a 489
e44359c3 490 if (!block)
a3161038 491 block = QTAILQ_FIRST(&ram_list.blocks);
e44359c3 492
4c8ae0f6 493 while (true) {
71c510e2 494 mr = block->mr;
4c8ae0f6
JQ
495 offset = migration_bitmap_find_and_reset_dirty(mr, offset);
496 if (complete_round && block == last_seen_block &&
497 offset >= last_offset) {
498 break;
499 }
500 if (offset >= block->length) {
501 offset = 0;
502 block = QTAILQ_NEXT(block, next);
503 if (!block) {
504 block = QTAILQ_FIRST(&ram_list.blocks);
505 complete_round = true;
78d07ae7 506 ram_bulk_stage = false;
4c8ae0f6
JQ
507 }
508 } else {
0033b8b4 509 int ret;
ad96090a 510 uint8_t *p;
5f718a15 511 int cont = (block == last_sent_block) ?
b23a9a5c 512 RAM_SAVE_FLAG_CONTINUE : 0;
ad96090a 513
71c510e2 514 p = memory_region_get_ram_ptr(mr) + offset;
ad96090a 515
b823ceaa
JQ
516 /* In doubt sent page as normal */
517 bytes_sent = -1;
0033b8b4
MH
518 ret = ram_control_save_page(f, block->offset,
519 offset, TARGET_PAGE_SIZE, &bytes_sent);
520
521 if (ret != RAM_SAVE_CONTROL_NOT_SUPP) {
522 if (ret != RAM_SAVE_CONTROL_DELAYED) {
523 if (bytes_sent > 0) {
524 acct_info.norm_pages++;
525 } else if (bytes_sent == 0) {
526 acct_info.dup_pages++;
527 }
528 }
dc3c26a4 529 } else if (is_zero_range(p, TARGET_PAGE_SIZE)) {
004d4c10 530 acct_info.dup_pages++;
9ef051e5
PL
531 bytes_sent = save_block_hdr(f, block, offset, cont,
532 RAM_SAVE_FLAG_COMPRESS);
533 qemu_put_byte(f, 0);
534 bytes_sent++;
5cc11c46 535 } else if (!ram_bulk_stage && migrate_use_xbzrle()) {
17ad9b35
OW
536 current_addr = block->offset + offset;
537 bytes_sent = save_xbzrle_page(f, p, current_addr, block,
dd051c72
JQ
538 offset, cont, last_stage);
539 if (!last_stage) {
540 p = get_cached_data(XBZRLE.cache, current_addr);
541 }
17ad9b35
OW
542 }
543
b823ceaa 544 /* XBZRLE overflow or normal page */
17ad9b35 545 if (bytes_sent == -1) {
3f7d7b09 546 bytes_sent = save_block_hdr(f, block, offset, cont, RAM_SAVE_FLAG_PAGE);
500f0061 547 qemu_put_buffer_async(f, p, TARGET_PAGE_SIZE);
3f7d7b09 548 bytes_sent += TARGET_PAGE_SIZE;
004d4c10 549 acct_info.norm_pages++;
ad96090a
BS
550 }
551
17ad9b35 552 /* if page is unmodified, continue to the next */
b823ceaa 553 if (bytes_sent > 0) {
5f718a15 554 last_sent_block = block;
17ad9b35
OW
555 break;
556 }
ad96090a 557 }
4c8ae0f6 558 }
b23a9a5c 559 last_seen_block = block;
e44359c3 560 last_offset = offset;
ad96090a 561
3fc250b4 562 return bytes_sent;
ad96090a
BS
563}
564
565static uint64_t bytes_transferred;
566
2b0ce079
MH
567void acct_update_position(QEMUFile *f, size_t size, bool zero)
568{
569 uint64_t pages = size / TARGET_PAGE_SIZE;
570 if (zero) {
571 acct_info.dup_pages += pages;
572 } else {
573 acct_info.norm_pages += pages;
574 bytes_transferred += size;
575 qemu_update_position(f, size);
576 }
577}
578
ad96090a
BS
579static ram_addr_t ram_save_remaining(void)
580{
c6bf8e0e 581 return migration_dirty_pages;
ad96090a
BS
582}
583
584uint64_t ram_bytes_remaining(void)
585{
586 return ram_save_remaining() * TARGET_PAGE_SIZE;
587}
588
589uint64_t ram_bytes_transferred(void)
590{
591 return bytes_transferred;
592}
593
594uint64_t ram_bytes_total(void)
595{
d17b5288
AW
596 RAMBlock *block;
597 uint64_t total = 0;
598
a3161038 599 QTAILQ_FOREACH(block, &ram_list.blocks, next)
d17b5288
AW
600 total += block->length;
601
602 return total;
ad96090a
BS
603}
604
8e21cd32
OW
605static void migration_end(void)
606{
244eaa75
PB
607 if (migration_bitmap) {
608 memory_global_dirty_log_stop();
609 g_free(migration_bitmap);
610 migration_bitmap = NULL;
611 }
17ad9b35 612
244eaa75 613 if (XBZRLE.cache) {
17ad9b35
OW
614 cache_fini(XBZRLE.cache);
615 g_free(XBZRLE.cache);
616 g_free(XBZRLE.encoded_buf);
617 g_free(XBZRLE.current_buf);
618 g_free(XBZRLE.decoded_buf);
619 XBZRLE.cache = NULL;
620 }
8e21cd32
OW
621}
622
9b5bfab0
JQ
623static void ram_migration_cancel(void *opaque)
624{
625 migration_end();
626}
627
5a170775
JQ
628static void reset_ram_globals(void)
629{
b23a9a5c 630 last_seen_block = NULL;
5f718a15 631 last_sent_block = NULL;
5a170775 632 last_offset = 0;
f798b07f 633 last_version = ram_list.version;
78d07ae7 634 ram_bulk_stage = true;
5a170775
JQ
635}
636
4508bd9e
JQ
637#define MAX_WAIT 50 /* ms, half buffered_file limit */
638
d1315aac 639static int ram_save_setup(QEMUFile *f, void *opaque)
ad96090a 640{
d1315aac 641 RAMBlock *block;
c6bf8e0e
JQ
642 int64_t ram_pages = last_ram_offset() >> TARGET_PAGE_BITS;
643
644 migration_bitmap = bitmap_new(ram_pages);
7ec81e56 645 bitmap_set(migration_bitmap, 0, ram_pages);
c6bf8e0e 646 migration_dirty_pages = ram_pages;
7ca1dfad
CV
647 mig_throttle_on = false;
648 dirty_rate_high_cnt = 0;
ad96090a 649
17ad9b35
OW
650 if (migrate_use_xbzrle()) {
651 XBZRLE.cache = cache_init(migrate_xbzrle_cache_size() /
652 TARGET_PAGE_SIZE,
653 TARGET_PAGE_SIZE);
654 if (!XBZRLE.cache) {
655 DPRINTF("Error creating cache\n");
656 return -1;
657 }
658 XBZRLE.encoded_buf = g_malloc0(TARGET_PAGE_SIZE);
659 XBZRLE.current_buf = g_malloc(TARGET_PAGE_SIZE);
004d4c10 660 acct_clear();
17ad9b35
OW
661 }
662
9b095037
PB
663 qemu_mutex_lock_iothread();
664 qemu_mutex_lock_ramlist();
665 bytes_transferred = 0;
666 reset_ram_globals();
667
d1315aac 668 memory_global_dirty_log_start();
c6bf8e0e 669 migration_bitmap_sync();
9b095037 670 qemu_mutex_unlock_iothread();
ad96090a 671
d1315aac 672 qemu_put_be64(f, ram_bytes_total() | RAM_SAVE_FLAG_MEM_SIZE);
97ab12d4 673
a3161038 674 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
d1315aac
JQ
675 qemu_put_byte(f, strlen(block->idstr));
676 qemu_put_buffer(f, (uint8_t *)block->idstr, strlen(block->idstr));
677 qemu_put_be64(f, block->length);
ad96090a
BS
678 }
679
b2a8658e 680 qemu_mutex_unlock_ramlist();
0033b8b4
MH
681
682 ram_control_before_iterate(f, RAM_CONTROL_SETUP);
683 ram_control_after_iterate(f, RAM_CONTROL_SETUP);
684
d1315aac
JQ
685 qemu_put_be64(f, RAM_SAVE_FLAG_EOS);
686
687 return 0;
688}
689
16310a3c 690static int ram_save_iterate(QEMUFile *f, void *opaque)
d1315aac 691{
d1315aac
JQ
692 int ret;
693 int i;
e4ed1541 694 int64_t t0;
b823ceaa 695 int total_sent = 0;
d1315aac 696
b2a8658e
UD
697 qemu_mutex_lock_ramlist();
698
f798b07f
UD
699 if (ram_list.version != last_version) {
700 reset_ram_globals();
701 }
702
0033b8b4
MH
703 ram_control_before_iterate(f, RAM_CONTROL_ROUND);
704
bc72ad67 705 t0 = qemu_clock_get_ns(QEMU_CLOCK_REALTIME);
4508bd9e 706 i = 0;
2975725f 707 while ((ret = qemu_file_rate_limit(f)) == 0) {
3fc250b4 708 int bytes_sent;
ad96090a 709
dd051c72 710 bytes_sent = ram_save_block(f, false);
6c779f22 711 /* no more blocks to sent */
b823ceaa 712 if (bytes_sent == 0) {
ad96090a
BS
713 break;
714 }
b823ceaa 715 total_sent += bytes_sent;
004d4c10 716 acct_info.iterations++;
7ca1dfad 717 check_guest_throttling();
4508bd9e
JQ
718 /* we want to check in the 1st loop, just in case it was the 1st time
719 and we had to sync the dirty bitmap.
720 qemu_get_clock_ns() is a bit expensive, so we only check each some
721 iterations
722 */
723 if ((i & 63) == 0) {
bc72ad67 724 uint64_t t1 = (qemu_clock_get_ns(QEMU_CLOCK_REALTIME) - t0) / 1000000;
4508bd9e 725 if (t1 > MAX_WAIT) {
ef37a699 726 DPRINTF("big wait: %" PRIu64 " milliseconds, %d iterations\n",
4508bd9e
JQ
727 t1, i);
728 break;
729 }
730 }
731 i++;
ad96090a
BS
732 }
733
fb3409de
PB
734 qemu_mutex_unlock_ramlist();
735
0033b8b4
MH
736 /*
737 * Must occur before EOS (or any QEMUFile operation)
738 * because of RDMA protocol.
739 */
740 ram_control_after_iterate(f, RAM_CONTROL_ROUND);
741
6cd0beda
LL
742 bytes_transferred += total_sent;
743
744 /*
745 * Do not count these 8 bytes into total_sent, so that we can
746 * return 0 if no page had been dirtied.
747 */
748 qemu_put_be64(f, RAM_SAVE_FLAG_EOS);
749 bytes_transferred += 8;
750
751 ret = qemu_file_get_error(f);
2975725f
JQ
752 if (ret < 0) {
753 return ret;
754 }
755
b823ceaa 756 return total_sent;
16310a3c
JQ
757}
758
759static int ram_save_complete(QEMUFile *f, void *opaque)
760{
b2a8658e 761 qemu_mutex_lock_ramlist();
9c339485 762 migration_bitmap_sync();
b2a8658e 763
0033b8b4
MH
764 ram_control_before_iterate(f, RAM_CONTROL_FINISH);
765
ad96090a 766 /* try transferring iterative blocks of memory */
3a697f69 767
16310a3c 768 /* flush all remaining blocks regardless of rate limiting */
6c779f22 769 while (true) {
3fc250b4
PR
770 int bytes_sent;
771
dd051c72 772 bytes_sent = ram_save_block(f, true);
6c779f22 773 /* no more blocks to sent */
b823ceaa 774 if (bytes_sent == 0) {
6c779f22 775 break;
ad96090a 776 }
16310a3c 777 bytes_transferred += bytes_sent;
ad96090a 778 }
0033b8b4
MH
779
780 ram_control_after_iterate(f, RAM_CONTROL_FINISH);
244eaa75 781 migration_end();
ad96090a 782
b2a8658e 783 qemu_mutex_unlock_ramlist();
ad96090a
BS
784 qemu_put_be64(f, RAM_SAVE_FLAG_EOS);
785
5b3c9638 786 return 0;
ad96090a
BS
787}
788
e4ed1541
JQ
789static uint64_t ram_save_pending(QEMUFile *f, void *opaque, uint64_t max_size)
790{
791 uint64_t remaining_size;
792
793 remaining_size = ram_save_remaining() * TARGET_PAGE_SIZE;
794
795 if (remaining_size < max_size) {
32c835ba 796 qemu_mutex_lock_iothread();
e4ed1541 797 migration_bitmap_sync();
32c835ba 798 qemu_mutex_unlock_iothread();
e4ed1541
JQ
799 remaining_size = ram_save_remaining() * TARGET_PAGE_SIZE;
800 }
801 return remaining_size;
802}
803
17ad9b35
OW
804static int load_xbzrle(QEMUFile *f, ram_addr_t addr, void *host)
805{
806 int ret, rc = 0;
807 unsigned int xh_len;
808 int xh_flags;
809
810 if (!XBZRLE.decoded_buf) {
811 XBZRLE.decoded_buf = g_malloc(TARGET_PAGE_SIZE);
812 }
813
814 /* extract RLE header */
815 xh_flags = qemu_get_byte(f);
816 xh_len = qemu_get_be16(f);
817
818 if (xh_flags != ENCODING_FLAG_XBZRLE) {
819 fprintf(stderr, "Failed to load XBZRLE page - wrong compression!\n");
820 return -1;
821 }
822
823 if (xh_len > TARGET_PAGE_SIZE) {
824 fprintf(stderr, "Failed to load XBZRLE page - len overflow!\n");
825 return -1;
826 }
827 /* load data and decode */
828 qemu_get_buffer(f, XBZRLE.decoded_buf, xh_len);
829
830 /* decode RLE */
831 ret = xbzrle_decode_buffer(XBZRLE.decoded_buf, xh_len, host,
832 TARGET_PAGE_SIZE);
833 if (ret == -1) {
834 fprintf(stderr, "Failed to load XBZRLE page - decode error!\n");
835 rc = -1;
836 } else if (ret > TARGET_PAGE_SIZE) {
837 fprintf(stderr, "Failed to load XBZRLE page - size %d exceeds %d!\n",
838 ret, TARGET_PAGE_SIZE);
839 abort();
840 }
841
842 return rc;
843}
844
a55bbe31
AW
845static inline void *host_from_stream_offset(QEMUFile *f,
846 ram_addr_t offset,
847 int flags)
848{
849 static RAMBlock *block = NULL;
850 char id[256];
851 uint8_t len;
852
853 if (flags & RAM_SAVE_FLAG_CONTINUE) {
854 if (!block) {
855 fprintf(stderr, "Ack, bad migration stream!\n");
856 return NULL;
857 }
858
dc94a7ed 859 return memory_region_get_ram_ptr(block->mr) + offset;
a55bbe31
AW
860 }
861
862 len = qemu_get_byte(f);
863 qemu_get_buffer(f, (uint8_t *)id, len);
864 id[len] = 0;
865
a3161038 866 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
a55bbe31 867 if (!strncmp(id, block->idstr, sizeof(id)))
dc94a7ed 868 return memory_region_get_ram_ptr(block->mr) + offset;
a55bbe31
AW
869 }
870
871 fprintf(stderr, "Can't find block %s!\n", id);
872 return NULL;
873}
874
44c3b58c
MH
875/*
876 * If a page (or a whole RDMA chunk) has been
877 * determined to be zero, then zap it.
878 */
879void ram_handle_compressed(void *host, uint8_t ch, uint64_t size)
880{
d613a56f 881 if (ch != 0 || !is_zero_range(host, size)) {
44c3b58c 882 memset(host, ch, size);
44c3b58c
MH
883 }
884}
885
7908c78d 886static int ram_load(QEMUFile *f, void *opaque, int version_id)
ad96090a
BS
887{
888 ram_addr_t addr;
3a697f69 889 int flags, ret = 0;
42802d47 890 int error;
3a697f69
OW
891 static uint64_t seq_iter;
892
893 seq_iter++;
ad96090a 894
f09f2189 895 if (version_id < 4 || version_id > 4) {
ad96090a
BS
896 return -EINVAL;
897 }
898
899 do {
900 addr = qemu_get_be64(f);
901
902 flags = addr & ~TARGET_PAGE_MASK;
903 addr &= TARGET_PAGE_MASK;
904
905 if (flags & RAM_SAVE_FLAG_MEM_SIZE) {
f09f2189 906 if (version_id == 4) {
97ab12d4
AW
907 /* Synchronize RAM block list */
908 char id[256];
909 ram_addr_t length;
910 ram_addr_t total_ram_bytes = addr;
911
912 while (total_ram_bytes) {
913 RAMBlock *block;
914 uint8_t len;
915
916 len = qemu_get_byte(f);
917 qemu_get_buffer(f, (uint8_t *)id, len);
918 id[len] = 0;
919 length = qemu_get_be64(f);
920
a3161038 921 QTAILQ_FOREACH(block, &ram_list.blocks, next) {
97ab12d4 922 if (!strncmp(id, block->idstr, sizeof(id))) {
3a697f69 923 if (block->length != length) {
6bedfe94
SW
924 fprintf(stderr,
925 "Length mismatch: %s: " RAM_ADDR_FMT
926 " in != " RAM_ADDR_FMT "\n", id, length,
87d2f825 927 block->length);
3a697f69
OW
928 ret = -EINVAL;
929 goto done;
930 }
97ab12d4
AW
931 break;
932 }
933 }
934
935 if (!block) {
fb787f81
AW
936 fprintf(stderr, "Unknown ramblock \"%s\", cannot "
937 "accept migration\n", id);
3a697f69
OW
938 ret = -EINVAL;
939 goto done;
97ab12d4
AW
940 }
941
942 total_ram_bytes -= length;
943 }
ad96090a
BS
944 }
945 }
946
947 if (flags & RAM_SAVE_FLAG_COMPRESS) {
97ab12d4
AW
948 void *host;
949 uint8_t ch;
950
f09f2189 951 host = host_from_stream_offset(f, addr, flags);
492fb99c
MT
952 if (!host) {
953 return -EINVAL;
954 }
97ab12d4 955
97ab12d4 956 ch = qemu_get_byte(f);
44c3b58c 957 ram_handle_compressed(host, ch, TARGET_PAGE_SIZE);
ad96090a 958 } else if (flags & RAM_SAVE_FLAG_PAGE) {
97ab12d4
AW
959 void *host;
960
f09f2189 961 host = host_from_stream_offset(f, addr, flags);
0ff1f9f5
OW
962 if (!host) {
963 return -EINVAL;
964 }
97ab12d4 965
97ab12d4 966 qemu_get_buffer(f, host, TARGET_PAGE_SIZE);
17ad9b35 967 } else if (flags & RAM_SAVE_FLAG_XBZRLE) {
17ad9b35
OW
968 void *host = host_from_stream_offset(f, addr, flags);
969 if (!host) {
970 return -EINVAL;
971 }
972
973 if (load_xbzrle(f, addr, host) < 0) {
974 ret = -EINVAL;
975 goto done;
976 }
0033b8b4
MH
977 } else if (flags & RAM_SAVE_FLAG_HOOK) {
978 ram_control_load_hook(f, flags);
ad96090a 979 }
42802d47
JQ
980 error = qemu_file_get_error(f);
981 if (error) {
3a697f69
OW
982 ret = error;
983 goto done;
ad96090a
BS
984 }
985 } while (!(flags & RAM_SAVE_FLAG_EOS));
986
3a697f69 987done:
ef37a699
IM
988 DPRINTF("Completed load of VM with exit code %d seq iteration "
989 "%" PRIu64 "\n", ret, seq_iter);
3a697f69 990 return ret;
ad96090a
BS
991}
992
7908c78d 993SaveVMHandlers savevm_ram_handlers = {
d1315aac 994 .save_live_setup = ram_save_setup,
16310a3c
JQ
995 .save_live_iterate = ram_save_iterate,
996 .save_live_complete = ram_save_complete,
e4ed1541 997 .save_live_pending = ram_save_pending,
7908c78d 998 .load_state = ram_load,
9b5bfab0 999 .cancel = ram_migration_cancel,
7908c78d
JQ
1000};
1001
0dfa5ef9
IY
1002struct soundhw {
1003 const char *name;
1004 const char *descr;
1005 int enabled;
1006 int isa;
1007 union {
4a0f031d 1008 int (*init_isa) (ISABus *bus);
0dfa5ef9
IY
1009 int (*init_pci) (PCIBus *bus);
1010 } init;
1011};
1012
36cd6f6f
PB
1013static struct soundhw soundhw[9];
1014static int soundhw_count;
ad96090a 1015
36cd6f6f
PB
1016void isa_register_soundhw(const char *name, const char *descr,
1017 int (*init_isa)(ISABus *bus))
1018{
1019 assert(soundhw_count < ARRAY_SIZE(soundhw) - 1);
1020 soundhw[soundhw_count].name = name;
1021 soundhw[soundhw_count].descr = descr;
1022 soundhw[soundhw_count].isa = 1;
1023 soundhw[soundhw_count].init.init_isa = init_isa;
1024 soundhw_count++;
1025}
ad96090a 1026
36cd6f6f
PB
1027void pci_register_soundhw(const char *name, const char *descr,
1028 int (*init_pci)(PCIBus *bus))
1029{
1030 assert(soundhw_count < ARRAY_SIZE(soundhw) - 1);
1031 soundhw[soundhw_count].name = name;
1032 soundhw[soundhw_count].descr = descr;
1033 soundhw[soundhw_count].isa = 0;
1034 soundhw[soundhw_count].init.init_pci = init_pci;
1035 soundhw_count++;
1036}
ad96090a
BS
1037
1038void select_soundhw(const char *optarg)
1039{
1040 struct soundhw *c;
1041
c8057f95 1042 if (is_help_option(optarg)) {
ad96090a
BS
1043 show_valid_cards:
1044
36cd6f6f
PB
1045 if (soundhw_count) {
1046 printf("Valid sound card names (comma separated):\n");
1047 for (c = soundhw; c->name; ++c) {
1048 printf ("%-11s %s\n", c->name, c->descr);
1049 }
1050 printf("\n-soundhw all will enable all of the above\n");
1051 } else {
1052 printf("Machine has no user-selectable audio hardware "
1053 "(it may or may not have always-present audio hardware).\n");
ad96090a 1054 }
c8057f95 1055 exit(!is_help_option(optarg));
ad96090a
BS
1056 }
1057 else {
1058 size_t l;
1059 const char *p;
1060 char *e;
1061 int bad_card = 0;
1062
1063 if (!strcmp(optarg, "all")) {
1064 for (c = soundhw; c->name; ++c) {
1065 c->enabled = 1;
1066 }
1067 return;
1068 }
1069
1070 p = optarg;
1071 while (*p) {
1072 e = strchr(p, ',');
1073 l = !e ? strlen(p) : (size_t) (e - p);
1074
1075 for (c = soundhw; c->name; ++c) {
1076 if (!strncmp(c->name, p, l) && !c->name[l]) {
1077 c->enabled = 1;
1078 break;
1079 }
1080 }
1081
1082 if (!c->name) {
1083 if (l > 80) {
1084 fprintf(stderr,
1085 "Unknown sound card name (too big to show)\n");
1086 }
1087 else {
1088 fprintf(stderr, "Unknown sound card name `%.*s'\n",
1089 (int) l, p);
1090 }
1091 bad_card = 1;
1092 }
1093 p += l + (e != NULL);
1094 }
1095
1096 if (bad_card) {
1097 goto show_valid_cards;
1098 }
1099 }
1100}
0dfa5ef9 1101
f81222bc 1102void audio_init(void)
0dfa5ef9
IY
1103{
1104 struct soundhw *c;
f81222bc
PB
1105 ISABus *isa_bus = (ISABus *) object_resolve_path_type("", TYPE_ISA_BUS, NULL);
1106 PCIBus *pci_bus = (PCIBus *) object_resolve_path_type("", TYPE_PCI_BUS, NULL);
0dfa5ef9
IY
1107
1108 for (c = soundhw; c->name; ++c) {
1109 if (c->enabled) {
1110 if (c->isa) {
f81222bc
PB
1111 if (!isa_bus) {
1112 fprintf(stderr, "ISA bus not available for %s\n", c->name);
1113 exit(1);
0dfa5ef9 1114 }
f81222bc 1115 c->init.init_isa(isa_bus);
0dfa5ef9 1116 } else {
f81222bc
PB
1117 if (!pci_bus) {
1118 fprintf(stderr, "PCI bus not available for %s\n", c->name);
1119 exit(1);
0dfa5ef9 1120 }
f81222bc 1121 c->init.init_pci(pci_bus);
0dfa5ef9
IY
1122 }
1123 }
1124 }
1125}
ad96090a
BS
1126
1127int qemu_uuid_parse(const char *str, uint8_t *uuid)
1128{
1129 int ret;
1130
1131 if (strlen(str) != 36) {
1132 return -1;
1133 }
1134
1135 ret = sscanf(str, UUID_FMT, &uuid[0], &uuid[1], &uuid[2], &uuid[3],
1136 &uuid[4], &uuid[5], &uuid[6], &uuid[7], &uuid[8], &uuid[9],
1137 &uuid[10], &uuid[11], &uuid[12], &uuid[13], &uuid[14],
1138 &uuid[15]);
1139
1140 if (ret != 16) {
1141 return -1;
1142 }
ad96090a
BS
1143 return 0;
1144}
1145
0c764a9d 1146void do_acpitable_option(const QemuOpts *opts)
ad96090a
BS
1147{
1148#ifdef TARGET_I386
23084327
LE
1149 Error *err = NULL;
1150
1151 acpi_table_add(opts, &err);
1152 if (err) {
4a44d85e
SA
1153 error_report("Wrong acpi table provided: %s",
1154 error_get_pretty(err));
23084327 1155 error_free(err);
ad96090a
BS
1156 exit(1);
1157 }
1158#endif
1159}
1160
4f953d2f 1161void do_smbios_option(QemuOpts *opts)
ad96090a
BS
1162{
1163#ifdef TARGET_I386
4f953d2f 1164 smbios_entry_add(opts);
ad96090a
BS
1165#endif
1166}
1167
1168void cpudef_init(void)
1169{
1170#if defined(cpudef_setup)
1171 cpudef_setup(); /* parse cpu definitions in target config file */
1172#endif
1173}
1174
303d4e86
AP
1175int tcg_available(void)
1176{
1177 return 1;
1178}
1179
ad96090a
BS
1180int kvm_available(void)
1181{
1182#ifdef CONFIG_KVM
1183 return 1;
1184#else
1185 return 0;
1186#endif
1187}
1188
1189int xen_available(void)
1190{
1191#ifdef CONFIG_XEN
1192 return 1;
1193#else
1194 return 0;
1195#endif
1196}
99afc91d
DB
1197
1198
1199TargetInfo *qmp_query_target(Error **errp)
1200{
1201 TargetInfo *info = g_malloc0(sizeof(*info));
1202
c02a9552 1203 info->arch = g_strdup(TARGET_NAME);
99afc91d
DB
1204
1205 return info;
1206}
7ca1dfad
CV
1207
1208/* Stub function that's gets run on the vcpu when its brought out of the
1209 VM to run inside qemu via async_run_on_cpu()*/
1210static void mig_sleep_cpu(void *opq)
1211{
1212 qemu_mutex_unlock_iothread();
1213 g_usleep(30*1000);
1214 qemu_mutex_lock_iothread();
1215}
1216
1217/* To reduce the dirty rate explicitly disallow the VCPUs from spending
1218 much time in the VM. The migration thread will try to catchup.
1219 Workload will experience a performance drop.
1220*/
7ca1dfad
CV
1221static void mig_throttle_guest_down(void)
1222{
38fcbd3f
AF
1223 CPUState *cpu;
1224
7ca1dfad 1225 qemu_mutex_lock_iothread();
38fcbd3f
AF
1226 CPU_FOREACH(cpu) {
1227 async_run_on_cpu(cpu, mig_sleep_cpu, NULL);
1228 }
7ca1dfad
CV
1229 qemu_mutex_unlock_iothread();
1230}
1231
1232static void check_guest_throttling(void)
1233{
1234 static int64_t t0;
1235 int64_t t1;
1236
1237 if (!mig_throttle_on) {
1238 return;
1239 }
1240
1241 if (!t0) {
bc72ad67 1242 t0 = qemu_clock_get_ns(QEMU_CLOCK_REALTIME);
7ca1dfad
CV
1243 return;
1244 }
1245
bc72ad67 1246 t1 = qemu_clock_get_ns(QEMU_CLOCK_REALTIME);
7ca1dfad
CV
1247
1248 /* If it has been more than 40 ms since the last time the guest
1249 * was throttled then do it again.
1250 */
1251 if (40 < (t1-t0)/1000000) {
1252 mig_throttle_guest_down();
1253 t0 = t1;
1254 }
1255}