mirror of https://gitee.com/openkylin/qemu.git
postcopy-ram: add a stub for postcopy_request_shared_page
This fixes the build on systems without userfaultfd. Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
096bf4c852
commit
c188c53927
migration
|
@ -928,6 +928,13 @@ int postcopy_ram_prepare_discard(MigrationIncomingState *mis)
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int postcopy_request_shared_page(struct PostCopyFD *pcfd, RAMBlock *rb,
|
||||||
|
uint64_t client_addr, uint64_t rb_offset)
|
||||||
|
{
|
||||||
|
assert(0);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
int postcopy_ram_enable_notify(MigrationIncomingState *mis)
|
int postcopy_ram_enable_notify(MigrationIncomingState *mis)
|
||||||
{
|
{
|
||||||
assert(0);
|
assert(0);
|
||||||
|
|
Loading…
Reference in New Issue