]> git.proxmox.com Git - mirror_qemu.git/commitdiff
numa: show hex number in error message for consistency and prefix them with 0x
authorHu Tao <hutao@cn.fujitsu.com>
Mon, 4 Aug 2014 08:16:09 +0000 (16:16 +0800)
committerMichael S. Tsirkin <mst@redhat.com>
Thu, 14 Aug 2014 11:22:07 +0000 (13:22 +0200)
The error messages before and after patch are:

before:
qemu-system-x86_64: total memory for NUMA nodes (134217728) should equal RAM size (20000000)

after:
qemu-system-x86_64: total memory for NUMA nodes (0x8000000) should equal RAM size (0x20000000)

Cc: qemu-stable@nongnu.org
Signed-off-by: Hu Tao <hutao@cn.fujitsu.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
numa.c

diff --git a/numa.c b/numa.c
index 7bf7834b7f9148ccb67fc245daa94b334a3afda3..c78cec96a845c7fbe745dd0bb2a6d59e73d3a062 100644 (file)
--- a/numa.c
+++ b/numa.c
@@ -210,8 +210,8 @@ void set_numa_nodes(void)
             numa_total += numa_info[i].node_mem;
         }
         if (numa_total != ram_size) {
-            error_report("total memory for NUMA nodes (%" PRIu64 ")"
-                         " should equal RAM size (" RAM_ADDR_FMT ")",
+            error_report("total memory for NUMA nodes (0x%" PRIx64 ")"
+                         " should equal RAM size (0x" RAM_ADDR_FMT ")",
                          numa_total, ram_size);
             exit(1);
         }