mirror of https://github.com/xqemu/xqemu.git
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
|
@ -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…
Reference in New Issue