diff options
author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2020-06-01 16:29:29 +0200 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2020-06-09 19:58:53 +0200 |
commit | 039a93b02f37a23f49e4b1d0c4a075829a9d49d3 (patch) | |
tree | eb17dc678b0835700527cfdc2dffd2478c574b26 /hw | |
parent | 94c1253e3e55d82806d00a94cbbde209738ed1a6 (diff) | |
download | qemu-039a93b02f37a23f49e4b1d0c4a075829a9d49d3.zip qemu-039a93b02f37a23f49e4b1d0c4a075829a9d49d3.tar.gz qemu-039a93b02f37a23f49e4b1d0c4a075829a9d49d3.tar.bz2 |
hw/i386/xen/xen-hvm: Use the IEC binary prefix definitions
IEC binary prefixes ease code review: the unit is explicit.
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Paul Durrant <paul@xen.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20200601142930.29408-8-f4bug@amsat.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/i386/xen/xen-hvm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hw/i386/xen/xen-hvm.c b/hw/i386/xen/xen-hvm.c index 82ece6b..94fe5d6 100644 --- a/hw/i386/xen/xen-hvm.c +++ b/hw/i386/xen/xen-hvm.c @@ -9,6 +9,7 @@ */ #include "qemu/osdep.h" +#include "qemu/units.h" #include "cpu.h" #include "hw/pci/pci.h" @@ -230,7 +231,7 @@ static void xen_ram_init(PCMachineState *pcms, * Xen does not allocate the memory continuously, it keeps a * hole of the size computed above or passed in. */ - block_len = (1ULL << 32) + x86ms->above_4g_mem_size; + block_len = (4 * GiB) + x86ms->above_4g_mem_size; } memory_region_init_ram(&ram_memory, NULL, "xen.ram", block_len, &error_fatal); |