mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-11 03:24:58 -06:00
migration: fix hardcoded function name in error report
Reviewed-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Signed-off-by: Alexey Perevalov <a.perevalov@samsung.com> Signed-off-by: Juan Quintela <quintela@redhat.com>
This commit is contained in:
parent
d7651f150d
commit
5553499f04
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ static bool ufd_version_check(int ufd, MigrationIncomingState *mis)
|
||||||
api_struct.api = UFFD_API;
|
api_struct.api = UFFD_API;
|
||||||
api_struct.features = 0;
|
api_struct.features = 0;
|
||||||
if (ioctl(ufd, UFFDIO_API, &api_struct)) {
|
if (ioctl(ufd, UFFDIO_API, &api_struct)) {
|
||||||
error_report("postcopy_ram_supported_by_host: UFFDIO_API failed: %s",
|
error_report("%s: UFFDIO_API failed: %s", __func__,
|
||||||
strerror(errno));
|
strerror(errno));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue