> -----Original Message----- > From: Philippe Mathieu-Daudé <philippe.mathieu.da...@gmail.com> On Behalf Of > Philippe Mathieu-Daudé > Sent: 01 June 2020 15:29 > To: qemu-de...@nongnu.org > Cc: xen-devel@lists.xenproject.org; Anthony Perard > <anthony.per...@citrix.com>; Paolo Bonzini > <pbonz...@redhat.com>; Hervé Poussineau <hpous...@reactos.org>; Helge Deller > <del...@gmx.de>; qemu- > a...@nongnu.org; Marcel Apfelbaum <marcel.apfelb...@gmail.com>; Stefano > Stabellini > <sstabell...@kernel.org>; Michael S. Tsirkin <m...@redhat.com>; Eduardo > Habkost <ehabk...@redhat.com>; > Paul Durrant <p...@xen.org>; Andrew Jeffery <and...@aj.id.au>; > qemu-triv...@nongnu.org; Peter Maydell > <peter.mayd...@linaro.org>; Joel Stanley <j...@jms.id.au>; Cédric Le Goater > <c...@kaod.org>; qemu- > p...@nongnu.org; Richard Henderson <r...@twiddle.net>; Philippe Mathieu-Daudé > <f4...@amsat.org> > Subject: [PATCH v2 7/8] 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.mayd...@linaro.org> > Signed-off-by: Philippe Mathieu-Daudé <f4...@amsat.org>
Reviewed-by: Paul Durrant <p...@xen.org> > --- > hw/i386/xen/xen-hvm.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/hw/i386/xen/xen-hvm.c b/hw/i386/xen/xen-hvm.c > index 82ece6b9e7..94fe5d65e9 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); > -- > 2.21.3