summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAlexey Perevalov <a.perevalov@samsung.com>2017-09-19 19:47:57 +0300
committerJuan Quintela <quintela@redhat.com>2017-09-22 14:11:28 +0200
commit5553499f043d4b7fc020600ffda75d1162ff970b (patch)
treeb04e87a0bc983a7fa688027a871c7cf5128c5ea9
parentd7651f150d61936344c4fab45eaeb0716c606af2 (diff)
downloadfocaccia-qemu-5553499f043d4b7fc020600ffda75d1162ff970b.tar.gz
focaccia-qemu-5553499f043d4b7fc020600ffda75d1162ff970b.zip
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>
Diffstat (limited to '')
-rw-r--r--migration/postcopy-ram.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/migration/postcopy-ram.c b/migration/postcopy-ram.c
index c70305ccc7..cf62fc756f 100644
--- a/migration/postcopy-ram.c
+++ b/migration/postcopy-ram.c
@@ -69,7 +69,7 @@ static bool ufd_version_check(int ufd, MigrationIncomingState *mis)
     api_struct.api = UFFD_API;
     api_struct.features = 0;
     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));
         return false;
     }