2 * Postcopy migration for RAM
4 * Copyright 2013-2015 Red Hat, Inc. and/or its affiliates
7 * Dave Gilbert <dgilbert@redhat.com>
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
15 * Postcopy is a migration technique where the execution flips from the
16 * source to the destination before all the data has been copied.
19 #include "qemu/osdep.h"
20 #include "exec/target_page.h"
21 #include "migration.h"
22 #include "qemu-file.h"
24 #include "postcopy-ram.h"
26 #include "sysemu/sysemu.h"
27 #include "sysemu/balloon.h"
28 #include "qemu/error-report.h"
31 /* Arbitrary limit on size of each discard command,
32 * keeps them around ~200 bytes
34 #define MAX_DISCARDS_PER_COMMAND 12
36 struct PostcopyDiscardState
{
37 const char *ramblock_name
;
40 * Start and length of a discard range (bytes)
42 uint64_t start_list
[MAX_DISCARDS_PER_COMMAND
];
43 uint64_t length_list
[MAX_DISCARDS_PER_COMMAND
];
44 unsigned int nsentwords
;
45 unsigned int nsentcmds
;
48 /* Postcopy needs to detect accesses to pages that haven't yet been copied
49 * across, and efficiently map new pages in, the techniques for doing this
50 * are target OS specific.
52 #if defined(__linux__)
55 #include <sys/ioctl.h>
56 #include <sys/syscall.h>
57 #include <asm/types.h> /* for __u64 */
60 #if defined(__linux__) && defined(__NR_userfaultfd) && defined(CONFIG_EVENTFD)
61 #include <sys/eventfd.h>
62 #include <linux/userfaultfd.h>
66 * receive_ufd_features: check userfault fd features, to request only supported
67 * features in the future.
69 * Returns: true on success
71 * __NR_userfaultfd - should be checked before
72 * @features: out parameter will contain uffdio_api.features provided by kernel
75 static bool receive_ufd_features(uint64_t *features
)
77 struct uffdio_api api_struct
= {0};
81 /* if we are here __NR_userfaultfd should exists */
82 ufd
= syscall(__NR_userfaultfd
, O_CLOEXEC
);
84 error_report("%s: syscall __NR_userfaultfd failed: %s", __func__
,
90 api_struct
.api
= UFFD_API
;
91 api_struct
.features
= 0;
92 if (ioctl(ufd
, UFFDIO_API
, &api_struct
)) {
93 error_report("%s: UFFDIO_API failed: %s", __func__
,
99 *features
= api_struct
.features
;
107 * request_ufd_features: this function should be called only once on a newly
108 * opened ufd, subsequent calls will lead to error.
110 * Returns: true on succes
112 * @ufd: fd obtained from userfaultfd syscall
113 * @features: bit mask see UFFD_API_FEATURES
115 static bool request_ufd_features(int ufd
, uint64_t features
)
117 struct uffdio_api api_struct
= {0};
120 api_struct
.api
= UFFD_API
;
121 api_struct
.features
= features
;
122 if (ioctl(ufd
, UFFDIO_API
, &api_struct
)) {
123 error_report("%s failed: UFFDIO_API failed: %s", __func__
,
128 ioctl_mask
= (__u64
)1 << _UFFDIO_REGISTER
|
129 (__u64
)1 << _UFFDIO_UNREGISTER
;
130 if ((api_struct
.ioctls
& ioctl_mask
) != ioctl_mask
) {
131 error_report("Missing userfault features: %" PRIx64
,
132 (uint64_t)(~api_struct
.ioctls
& ioctl_mask
));
139 static bool ufd_check_and_apply(int ufd
, MigrationIncomingState
*mis
)
141 uint64_t asked_features
= 0;
142 static uint64_t supported_features
;
145 * it's not possible to
146 * request UFFD_API twice per one fd
147 * userfault fd features is persistent
149 if (!supported_features
) {
150 if (!receive_ufd_features(&supported_features
)) {
151 error_report("%s failed", __func__
);
157 * request features, even if asked_features is 0, due to
158 * kernel expects UFFD_API before UFFDIO_REGISTER, per
159 * userfault file descriptor
161 if (!request_ufd_features(ufd
, asked_features
)) {
162 error_report("%s failed: features %" PRIu64
, __func__
,
167 if (getpagesize() != ram_pagesize_summary()) {
168 bool have_hp
= false;
169 /* We've got a huge page */
170 #ifdef UFFD_FEATURE_MISSING_HUGETLBFS
171 have_hp
= supported_features
& UFFD_FEATURE_MISSING_HUGETLBFS
;
174 error_report("Userfault on this host does not support huge pages");
181 /* Callback from postcopy_ram_supported_by_host block iterator.
183 static int test_ramblock_postcopiable(const char *block_name
, void *host_addr
,
184 ram_addr_t offset
, ram_addr_t length
, void *opaque
)
186 RAMBlock
*rb
= qemu_ram_block_by_name(block_name
);
187 size_t pagesize
= qemu_ram_pagesize(rb
);
189 if (qemu_ram_is_shared(rb
)) {
190 error_report("Postcopy on shared RAM (%s) is not yet supported",
195 if (length
% pagesize
) {
196 error_report("Postcopy requires RAM blocks to be a page size multiple,"
197 " block %s is 0x" RAM_ADDR_FMT
" bytes with a "
198 "page size of 0x%zx", block_name
, length
, pagesize
);
205 * Note: This has the side effect of munlock'ing all of RAM, that's
206 * normally fine since if the postcopy succeeds it gets turned back on at the
209 bool postcopy_ram_supported_by_host(MigrationIncomingState
*mis
)
211 long pagesize
= getpagesize();
213 bool ret
= false; /* Error unless we change it */
214 void *testarea
= NULL
;
215 struct uffdio_register reg_struct
;
216 struct uffdio_range range_struct
;
217 uint64_t feature_mask
;
219 if (qemu_target_page_size() > pagesize
) {
220 error_report("Target page size bigger than host page size");
224 ufd
= syscall(__NR_userfaultfd
, O_CLOEXEC
);
226 error_report("%s: userfaultfd not available: %s", __func__
,
231 /* Version and features check */
232 if (!ufd_check_and_apply(ufd
, mis
)) {
236 /* We don't support postcopy with shared RAM yet */
237 if (qemu_ram_foreach_block(test_ramblock_postcopiable
, NULL
)) {
242 * userfault and mlock don't go together; we'll put it back later if
246 error_report("%s: munlockall: %s", __func__
, strerror(errno
));
251 * We need to check that the ops we need are supported on anon memory
252 * To do that we need to register a chunk and see the flags that
255 testarea
= mmap(NULL
, pagesize
, PROT_READ
| PROT_WRITE
, MAP_PRIVATE
|
256 MAP_ANONYMOUS
, -1, 0);
257 if (testarea
== MAP_FAILED
) {
258 error_report("%s: Failed to map test area: %s", __func__
,
262 g_assert(((size_t)testarea
& (pagesize
-1)) == 0);
264 reg_struct
.range
.start
= (uintptr_t)testarea
;
265 reg_struct
.range
.len
= pagesize
;
266 reg_struct
.mode
= UFFDIO_REGISTER_MODE_MISSING
;
268 if (ioctl(ufd
, UFFDIO_REGISTER
, ®_struct
)) {
269 error_report("%s userfault register: %s", __func__
, strerror(errno
));
273 range_struct
.start
= (uintptr_t)testarea
;
274 range_struct
.len
= pagesize
;
275 if (ioctl(ufd
, UFFDIO_UNREGISTER
, &range_struct
)) {
276 error_report("%s userfault unregister: %s", __func__
, strerror(errno
));
280 feature_mask
= (__u64
)1 << _UFFDIO_WAKE
|
281 (__u64
)1 << _UFFDIO_COPY
|
282 (__u64
)1 << _UFFDIO_ZEROPAGE
;
283 if ((reg_struct
.ioctls
& feature_mask
) != feature_mask
) {
284 error_report("Missing userfault map features: %" PRIx64
,
285 (uint64_t)(~reg_struct
.ioctls
& feature_mask
));
293 munmap(testarea
, pagesize
);
302 * Setup an area of RAM so that it *can* be used for postcopy later; this
303 * must be done right at the start prior to pre-copy.
304 * opaque should be the MIS.
306 static int init_range(const char *block_name
, void *host_addr
,
307 ram_addr_t offset
, ram_addr_t length
, void *opaque
)
309 trace_postcopy_init_range(block_name
, host_addr
, offset
, length
);
312 * We need the whole of RAM to be truly empty for postcopy, so things
313 * like ROMs and any data tables built during init must be zero'd
314 * - we're going to get the copy from the source anyway.
315 * (Precopy will just overwrite this data, so doesn't need the discard)
317 if (ram_discard_range(block_name
, 0, length
)) {
325 * At the end of migration, undo the effects of init_range
326 * opaque should be the MIS.
328 static int cleanup_range(const char *block_name
, void *host_addr
,
329 ram_addr_t offset
, ram_addr_t length
, void *opaque
)
331 MigrationIncomingState
*mis
= opaque
;
332 struct uffdio_range range_struct
;
333 trace_postcopy_cleanup_range(block_name
, host_addr
, offset
, length
);
336 * We turned off hugepage for the precopy stage with postcopy enabled
337 * we can turn it back on now.
339 qemu_madvise(host_addr
, length
, QEMU_MADV_HUGEPAGE
);
342 * We can also turn off userfault now since we should have all the
343 * pages. It can be useful to leave it on to debug postcopy
344 * if you're not sure it's always getting every page.
346 range_struct
.start
= (uintptr_t)host_addr
;
347 range_struct
.len
= length
;
349 if (ioctl(mis
->userfault_fd
, UFFDIO_UNREGISTER
, &range_struct
)) {
350 error_report("%s: userfault unregister %s", __func__
, strerror(errno
));
359 * Initialise postcopy-ram, setting the RAM to a state where we can go into
360 * postcopy later; must be called prior to any precopy.
361 * called from arch_init's similarly named ram_postcopy_incoming_init
363 int postcopy_ram_incoming_init(MigrationIncomingState
*mis
, size_t ram_pages
)
365 if (qemu_ram_foreach_block(init_range
, NULL
)) {
373 * At the end of a migration where postcopy_ram_incoming_init was called.
375 int postcopy_ram_incoming_cleanup(MigrationIncomingState
*mis
)
377 trace_postcopy_ram_incoming_cleanup_entry();
379 if (mis
->have_fault_thread
) {
382 if (qemu_ram_foreach_block(cleanup_range
, mis
)) {
386 * Tell the fault_thread to exit, it's an eventfd that should
387 * currently be at 0, we're going to increment it to 1
390 if (write(mis
->userfault_quit_fd
, &tmp64
, 8) == 8) {
391 trace_postcopy_ram_incoming_cleanup_join();
392 qemu_thread_join(&mis
->fault_thread
);
394 /* Not much we can do here, but may as well report it */
395 error_report("%s: incrementing userfault_quit_fd: %s", __func__
,
398 trace_postcopy_ram_incoming_cleanup_closeuf();
399 close(mis
->userfault_fd
);
400 close(mis
->userfault_quit_fd
);
401 mis
->have_fault_thread
= false;
404 qemu_balloon_inhibit(false);
407 if (os_mlock() < 0) {
408 error_report("mlock: %s", strerror(errno
));
410 * It doesn't feel right to fail at this point, we have a valid
416 postcopy_state_set(POSTCOPY_INCOMING_END
);
418 if (mis
->postcopy_tmp_page
) {
419 munmap(mis
->postcopy_tmp_page
, mis
->largest_page_size
);
420 mis
->postcopy_tmp_page
= NULL
;
422 if (mis
->postcopy_tmp_zero_page
) {
423 munmap(mis
->postcopy_tmp_zero_page
, mis
->largest_page_size
);
424 mis
->postcopy_tmp_zero_page
= NULL
;
426 trace_postcopy_ram_incoming_cleanup_exit();
431 * Disable huge pages on an area
433 static int nhp_range(const char *block_name
, void *host_addr
,
434 ram_addr_t offset
, ram_addr_t length
, void *opaque
)
436 trace_postcopy_nhp_range(block_name
, host_addr
, offset
, length
);
439 * Before we do discards we need to ensure those discards really
440 * do delete areas of the page, even if THP thinks a hugepage would
441 * be a good idea, so force hugepages off.
443 qemu_madvise(host_addr
, length
, QEMU_MADV_NOHUGEPAGE
);
449 * Userfault requires us to mark RAM as NOHUGEPAGE prior to discard
450 * however leaving it until after precopy means that most of the precopy
453 int postcopy_ram_prepare_discard(MigrationIncomingState
*mis
)
455 if (qemu_ram_foreach_block(nhp_range
, mis
)) {
459 postcopy_state_set(POSTCOPY_INCOMING_DISCARD
);
465 * Mark the given area of RAM as requiring notification to unwritten areas
466 * Used as a callback on qemu_ram_foreach_block.
467 * host_addr: Base of area to mark
468 * offset: Offset in the whole ram arena
469 * length: Length of the section
470 * opaque: MigrationIncomingState pointer
471 * Returns 0 on success
473 static int ram_block_enable_notify(const char *block_name
, void *host_addr
,
474 ram_addr_t offset
, ram_addr_t length
,
477 MigrationIncomingState
*mis
= opaque
;
478 struct uffdio_register reg_struct
;
480 reg_struct
.range
.start
= (uintptr_t)host_addr
;
481 reg_struct
.range
.len
= length
;
482 reg_struct
.mode
= UFFDIO_REGISTER_MODE_MISSING
;
484 /* Now tell our userfault_fd that it's responsible for this area */
485 if (ioctl(mis
->userfault_fd
, UFFDIO_REGISTER
, ®_struct
)) {
486 error_report("%s userfault register: %s", __func__
, strerror(errno
));
489 if (!(reg_struct
.ioctls
& ((__u64
)1 << _UFFDIO_COPY
))) {
490 error_report("%s userfault: Region doesn't support COPY", __func__
);
498 * Handle faults detected by the USERFAULT markings
500 static void *postcopy_ram_fault_thread(void *opaque
)
502 MigrationIncomingState
*mis
= opaque
;
506 RAMBlock
*last_rb
= NULL
; /* last RAMBlock we sent part of */
508 trace_postcopy_ram_fault_thread_entry();
509 qemu_sem_post(&mis
->fault_thread_sem
);
512 ram_addr_t rb_offset
;
513 struct pollfd pfd
[2];
516 * We're mainly waiting for the kernel to give us a faulting HVA,
517 * however we can be told to quit via userfault_quit_fd which is
520 pfd
[0].fd
= mis
->userfault_fd
;
521 pfd
[0].events
= POLLIN
;
523 pfd
[1].fd
= mis
->userfault_quit_fd
;
524 pfd
[1].events
= POLLIN
; /* Waiting for eventfd to go positive */
527 if (poll(pfd
, 2, -1 /* Wait forever */) == -1) {
528 error_report("%s: userfault poll: %s", __func__
, strerror(errno
));
532 if (pfd
[1].revents
) {
533 trace_postcopy_ram_fault_thread_quit();
537 ret
= read(mis
->userfault_fd
, &msg
, sizeof(msg
));
538 if (ret
!= sizeof(msg
)) {
539 if (errno
== EAGAIN
) {
541 * if a wake up happens on the other thread just after
542 * the poll, there is nothing to read.
547 error_report("%s: Failed to read full userfault message: %s",
548 __func__
, strerror(errno
));
551 error_report("%s: Read %d bytes from userfaultfd expected %zd",
552 __func__
, ret
, sizeof(msg
));
553 break; /* Lost alignment, don't know what we'd read next */
556 if (msg
.event
!= UFFD_EVENT_PAGEFAULT
) {
557 error_report("%s: Read unexpected event %ud from userfaultfd",
558 __func__
, msg
.event
);
559 continue; /* It's not a page fault, shouldn't happen */
562 rb
= qemu_ram_block_from_host(
563 (void *)(uintptr_t)msg
.arg
.pagefault
.address
,
566 error_report("postcopy_ram_fault_thread: Fault outside guest: %"
567 PRIx64
, (uint64_t)msg
.arg
.pagefault
.address
);
571 rb_offset
&= ~(qemu_ram_pagesize(rb
) - 1);
572 trace_postcopy_ram_fault_thread_request(msg
.arg
.pagefault
.address
,
573 qemu_ram_get_idstr(rb
),
577 * Send the request to the source - we want to request one
578 * of our host page sizes (which is >= TPS)
582 migrate_send_rp_req_pages(mis
, qemu_ram_get_idstr(rb
),
583 rb_offset
, qemu_ram_pagesize(rb
));
585 /* Save some space */
586 migrate_send_rp_req_pages(mis
, NULL
,
587 rb_offset
, qemu_ram_pagesize(rb
));
590 trace_postcopy_ram_fault_thread_exit();
594 int postcopy_ram_enable_notify(MigrationIncomingState
*mis
)
596 /* Open the fd for the kernel to give us userfaults */
597 mis
->userfault_fd
= syscall(__NR_userfaultfd
, O_CLOEXEC
| O_NONBLOCK
);
598 if (mis
->userfault_fd
== -1) {
599 error_report("%s: Failed to open userfault fd: %s", __func__
,
605 * Although the host check already tested the API, we need to
606 * do the check again as an ABI handshake on the new fd.
608 if (!ufd_check_and_apply(mis
->userfault_fd
, mis
)) {
612 /* Now an eventfd we use to tell the fault-thread to quit */
613 mis
->userfault_quit_fd
= eventfd(0, EFD_CLOEXEC
);
614 if (mis
->userfault_quit_fd
== -1) {
615 error_report("%s: Opening userfault_quit_fd: %s", __func__
,
617 close(mis
->userfault_fd
);
621 qemu_sem_init(&mis
->fault_thread_sem
, 0);
622 qemu_thread_create(&mis
->fault_thread
, "postcopy/fault",
623 postcopy_ram_fault_thread
, mis
, QEMU_THREAD_JOINABLE
);
624 qemu_sem_wait(&mis
->fault_thread_sem
);
625 qemu_sem_destroy(&mis
->fault_thread_sem
);
626 mis
->have_fault_thread
= true;
628 /* Mark so that we get notified of accesses to unwritten areas */
629 if (qemu_ram_foreach_block(ram_block_enable_notify
, mis
)) {
634 * Ballooning can mark pages as absent while we're postcopying
635 * that would cause false userfaults.
637 qemu_balloon_inhibit(true);
639 trace_postcopy_ram_enable_notify();
644 static int qemu_ufd_copy_ioctl(int userfault_fd
, void *host_addr
,
645 void *from_addr
, uint64_t pagesize
, RAMBlock
*rb
)
649 struct uffdio_copy copy_struct
;
650 copy_struct
.dst
= (uint64_t)(uintptr_t)host_addr
;
651 copy_struct
.src
= (uint64_t)(uintptr_t)from_addr
;
652 copy_struct
.len
= pagesize
;
653 copy_struct
.mode
= 0;
654 ret
= ioctl(userfault_fd
, UFFDIO_COPY
, ©_struct
);
656 struct uffdio_zeropage zero_struct
;
657 zero_struct
.range
.start
= (uint64_t)(uintptr_t)host_addr
;
658 zero_struct
.range
.len
= pagesize
;
659 zero_struct
.mode
= 0;
660 ret
= ioctl(userfault_fd
, UFFDIO_ZEROPAGE
, &zero_struct
);
663 ramblock_recv_bitmap_set_range(rb
, host_addr
,
664 pagesize
/ qemu_target_page_size());
670 * Place a host page (from) at (host) atomically
671 * returns 0 on success
673 int postcopy_place_page(MigrationIncomingState
*mis
, void *host
, void *from
,
676 size_t pagesize
= qemu_ram_pagesize(rb
);
678 /* copy also acks to the kernel waking the stalled thread up
679 * TODO: We can inhibit that ack and only do it if it was requested
680 * which would be slightly cheaper, but we'd have to be careful
681 * of the order of updating our page state.
683 if (qemu_ufd_copy_ioctl(mis
->userfault_fd
, host
, from
, pagesize
, rb
)) {
685 error_report("%s: %s copy host: %p from: %p (size: %zd)",
686 __func__
, strerror(e
), host
, from
, pagesize
);
691 trace_postcopy_place_page(host
);
696 * Place a zero page at (host) atomically
697 * returns 0 on success
699 int postcopy_place_page_zero(MigrationIncomingState
*mis
, void *host
,
702 trace_postcopy_place_page_zero(host
);
704 if (qemu_ram_pagesize(rb
) == getpagesize()) {
705 if (qemu_ufd_copy_ioctl(mis
->userfault_fd
, host
, NULL
, getpagesize(),
708 error_report("%s: %s zero host: %p",
709 __func__
, strerror(e
), host
);
714 /* The kernel can't use UFFDIO_ZEROPAGE for hugepages */
715 if (!mis
->postcopy_tmp_zero_page
) {
716 mis
->postcopy_tmp_zero_page
= mmap(NULL
, mis
->largest_page_size
,
717 PROT_READ
| PROT_WRITE
,
718 MAP_PRIVATE
| MAP_ANONYMOUS
,
720 if (mis
->postcopy_tmp_zero_page
== MAP_FAILED
) {
722 mis
->postcopy_tmp_zero_page
= NULL
;
723 error_report("%s: %s mapping large zero page",
724 __func__
, strerror(e
));
727 memset(mis
->postcopy_tmp_zero_page
, '\0', mis
->largest_page_size
);
729 return postcopy_place_page(mis
, host
, mis
->postcopy_tmp_zero_page
,
737 * Returns a target page of memory that can be mapped at a later point in time
738 * using postcopy_place_page
739 * The same address is used repeatedly, postcopy_place_page just takes the
741 * Returns: Pointer to allocated page
744 void *postcopy_get_tmp_page(MigrationIncomingState
*mis
)
746 if (!mis
->postcopy_tmp_page
) {
747 mis
->postcopy_tmp_page
= mmap(NULL
, mis
->largest_page_size
,
748 PROT_READ
| PROT_WRITE
, MAP_PRIVATE
|
749 MAP_ANONYMOUS
, -1, 0);
750 if (mis
->postcopy_tmp_page
== MAP_FAILED
) {
751 mis
->postcopy_tmp_page
= NULL
;
752 error_report("%s: %s", __func__
, strerror(errno
));
757 return mis
->postcopy_tmp_page
;
761 /* No target OS support, stubs just fail */
762 bool postcopy_ram_supported_by_host(MigrationIncomingState
*mis
)
764 error_report("%s: No OS support", __func__
);
768 int postcopy_ram_incoming_init(MigrationIncomingState
*mis
, size_t ram_pages
)
770 error_report("postcopy_ram_incoming_init: No OS support");
774 int postcopy_ram_incoming_cleanup(MigrationIncomingState
*mis
)
780 int postcopy_ram_prepare_discard(MigrationIncomingState
*mis
)
786 int postcopy_ram_enable_notify(MigrationIncomingState
*mis
)
792 int postcopy_place_page(MigrationIncomingState
*mis
, void *host
, void *from
,
799 int postcopy_place_page_zero(MigrationIncomingState
*mis
, void *host
,
806 void *postcopy_get_tmp_page(MigrationIncomingState
*mis
)
814 /* ------------------------------------------------------------------------- */
817 * postcopy_discard_send_init: Called at the start of each RAMBlock before
818 * asking to discard individual ranges.
820 * @ms: The current migration state.
821 * @offset: the bitmap offset of the named RAMBlock in the migration
823 * @name: RAMBlock that discards will operate on.
825 * returns: a new PDS.
827 PostcopyDiscardState
*postcopy_discard_send_init(MigrationState
*ms
,
830 PostcopyDiscardState
*res
= g_malloc0(sizeof(PostcopyDiscardState
));
833 res
->ramblock_name
= name
;
840 * postcopy_discard_send_range: Called by the bitmap code for each chunk to
841 * discard. May send a discard message, may just leave it queued to
844 * @ms: Current migration state.
845 * @pds: Structure initialised by postcopy_discard_send_init().
846 * @start,@length: a range of pages in the migration bitmap in the
847 * RAM block passed to postcopy_discard_send_init() (length=1 is one page)
849 void postcopy_discard_send_range(MigrationState
*ms
, PostcopyDiscardState
*pds
,
850 unsigned long start
, unsigned long length
)
852 size_t tp_size
= qemu_target_page_size();
853 /* Convert to byte offsets within the RAM block */
854 pds
->start_list
[pds
->cur_entry
] = start
* tp_size
;
855 pds
->length_list
[pds
->cur_entry
] = length
* tp_size
;
856 trace_postcopy_discard_send_range(pds
->ramblock_name
, start
, length
);
860 if (pds
->cur_entry
== MAX_DISCARDS_PER_COMMAND
) {
861 /* Full set, ship it! */
862 qemu_savevm_send_postcopy_ram_discard(ms
->to_dst_file
,
873 * postcopy_discard_send_finish: Called at the end of each RAMBlock by the
874 * bitmap code. Sends any outstanding discard messages, frees the PDS
876 * @ms: Current migration state.
877 * @pds: Structure initialised by postcopy_discard_send_init().
879 void postcopy_discard_send_finish(MigrationState
*ms
, PostcopyDiscardState
*pds
)
881 /* Anything unsent? */
882 if (pds
->cur_entry
) {
883 qemu_savevm_send_postcopy_ram_discard(ms
->to_dst_file
,
891 trace_postcopy_discard_send_finish(pds
->ramblock_name
, pds
->nsentwords
,
898 * Current state of incoming postcopy; note this is not part of
899 * MigrationIncomingState since it's state is used during cleanup
900 * at the end as MIS is being freed.
902 static PostcopyState incoming_postcopy_state
;
904 PostcopyState
postcopy_state_get(void)
906 return atomic_mb_read(&incoming_postcopy_state
);
909 /* Set the state and return the old state */
910 PostcopyState
postcopy_state_set(PostcopyState new_state
)
912 return atomic_xchg(&incoming_postcopy_state
, new_state
);