diff mbox

migration/ram: fix build on 32 bit hosts

Message ID 1447340003-12265-1-git-send-email-mst@redhat.com
State New
Headers show

Commit Message

Michael S. Tsirkin Nov. 12, 2015, 2:53 p.m. UTC
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(-)

Comments

Juan Quintela Nov. 12, 2015, 3:28 p.m. UTC | #1
"Michael S. Tsirkin" <mst@redhat.com> wrote:
> 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>

Equivalent patch on queue and will be send  with another couple of fixes
later Today.  Thanks.




> ---
>  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);
>      }
diff mbox

Patch

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);
     }