qdev: Replace cannot_instantiate_with_device_add_yet with !user_creatable
[qemu.git] / migration / postcopy-ram.h
blob4c25f03be2b0500698ac42b41ec2fc36a16a17f5
1 /*
2 * Postcopy migration for RAM
4 * Copyright 2013 Red Hat, Inc. and/or its affiliates
6 * Authors:
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.
13 #ifndef QEMU_POSTCOPY_RAM_H
14 #define QEMU_POSTCOPY_RAM_H
16 /* Return true if the host supports everything we need to do postcopy-ram */
17 bool postcopy_ram_supported_by_host(void);
20 * Make all of RAM sensitive to accesses to areas that haven't yet been written
21 * and wire up anything necessary to deal with it.
23 int postcopy_ram_enable_notify(MigrationIncomingState *mis);
26 * Initialise postcopy-ram, setting the RAM to a state where we can go into
27 * postcopy later; must be called prior to any precopy.
28 * called from ram.c's similarly named ram_postcopy_incoming_init
30 int postcopy_ram_incoming_init(MigrationIncomingState *mis, size_t ram_pages);
33 * At the end of a migration where postcopy_ram_incoming_init was called.
35 int postcopy_ram_incoming_cleanup(MigrationIncomingState *mis);
38 * Userfault requires us to mark RAM as NOHUGEPAGE prior to discard
39 * however leaving it until after precopy means that most of the precopy
40 * data is still THPd
42 int postcopy_ram_prepare_discard(MigrationIncomingState *mis);
45 * Called at the start of each RAMBlock by the bitmap code.
46 * Returns a new PDS
48 PostcopyDiscardState *postcopy_discard_send_init(MigrationState *ms,
49 const char *name);
52 * Called by the bitmap code for each chunk to discard.
53 * May send a discard message, may just leave it queued to
54 * be sent later.
55 * @start,@length: a range of pages in the migration bitmap in the
56 * RAM block passed to postcopy_discard_send_init() (length=1 is one page)
58 void postcopy_discard_send_range(MigrationState *ms, PostcopyDiscardState *pds,
59 unsigned long start, unsigned long length);
62 * Called at the end of each RAMBlock by the bitmap code.
63 * Sends any outstanding discard messages, frees the PDS.
65 void postcopy_discard_send_finish(MigrationState *ms,
66 PostcopyDiscardState *pds);
69 * Place a page (from) at (host) efficiently
70 * There are restrictions on how 'from' must be mapped, in general best
71 * to use other postcopy_ routines to allocate.
72 * returns 0 on success
74 int postcopy_place_page(MigrationIncomingState *mis, void *host, void *from,
75 size_t pagesize);
78 * Place a zero page at (host) atomically
79 * returns 0 on success
81 int postcopy_place_page_zero(MigrationIncomingState *mis, void *host,
82 size_t pagesize);
85 * Allocate a page of memory that can be mapped at a later point in time
86 * using postcopy_place_page
87 * Returns: Pointer to allocated page
89 void *postcopy_get_tmp_page(MigrationIncomingState *mis);
91 #endif