diff options
author | Anthony PERARD <anthony.perard@citrix.com> | 2011-07-20 08:17:42 +0000 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2011-07-26 06:57:28 +0200 |
commit | 2508445a6fdbff04a35965a627f7df2a1f337558 (patch) | |
tree | d4672ffec3af926c85caf440282a095ea9c66623 /xen-all.c | |
parent | f6bb8b99d173e544bebf8f341d84bec0ae743c99 (diff) | |
download | qemu-2508445a6fdbff04a35965a627f7df2a1f337558.tar.gz qemu-2508445a6fdbff04a35965a627f7df2a1f337558.tar.bz2 qemu-2508445a6fdbff04a35965a627f7df2a1f337558.zip |
cpu-common: Have a ram_addr_t of uint64 with Xen.
In Xen case, memory can be bigger than the host memory. that mean a
32bits host (and QEMU) should be able to handle a RAM address of 64bits.
Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'xen-all.c')
-rw-r--r-- | xen-all.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -184,7 +184,7 @@ void xen_ram_alloc(ram_addr_t ram_addr, ram_addr_t size) } if (xc_domain_populate_physmap_exact(xen_xc, xen_domid, nr_pfn, 0, 0, pfn_list)) { - hw_error("xen: failed to populate ram at %lx", ram_addr); + hw_error("xen: failed to populate ram at " RAM_ADDR_FMT, ram_addr); } qemu_free(pfn_list); |