qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] migration/ram: fix build on 32 bit hosts
@ 2015-11-12 14:53 Michael S. Tsirkin
  2015-11-12 15:28 ` Juan Quintela
  0 siblings, 1 reply; 2+ messages in thread
From: Michael S. Tsirkin @ 2015-11-12 14:53 UTC (permalink / raw)
  To: qemu-devel; +Cc: Amit Shah, Peter Maydell, dgilbert, Juan Quintela

ram_addr_t must be printed with RAM_ADDR_FMT not %z.
Also, change size print to %zx to match what RAM_ADDR_FMT does.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
 migration/ram.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/migration/ram.c b/migration/ram.c
index 62cf42b..80a67bb 100644
--- a/migration/ram.c
+++ b/migration/ram.c
@@ -1184,7 +1184,7 @@ int ram_save_queue_pages(MigrationState *ms, const char *rbname,
     }
     trace_ram_save_queue_pages(ramblock->idstr, start, len);
     if (start+len > ramblock->used_length) {
-        error_report("%s request overrun start=%zx len=%zx blocklen=%zx",
+        error_report("%s request overrun start=0x" RAM_ADDR_FMT " len=0x" RAM_ADDR_FMT " blocklen=0x" RAM_ADDR_FMT,
                      __func__, start, len, ramblock->used_length);
         goto err;
     }
@@ -1845,7 +1845,7 @@ int ram_discard_range(MigrationIncomingState *mis,
         ret = postcopy_ram_discard_range(mis, host_startaddr, length);
     } else {
         error_report("ram_discard_range: Overrun block '%s' (%" PRIu64
-                     "/%zu/%zu)",
+                     "/%zx/0x" RAM_ADDR_FMT ")",
                      block_name, start, length, rb->used_length);
     }
 
-- 
MST

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-11-12 15:28 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-12 14:53 [Qemu-devel] [PATCH] migration/ram: fix build on 32 bit hosts Michael S. Tsirkin
2015-11-12 15:28 ` Juan Quintela

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).