Message ID | 20191020225650.3671-16-philmd@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | hw: Let the machine be the owner of the system memory | expand |
On 10/20/19 3:56 PM, Philippe Mathieu-Daudé wrote: > Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> > --- > hw/i386/pc.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Reviewed-by: Richard Henderson <richard.henderson@linaro.org> r~
On Sun, Oct 20, 2019 at 4:20 PM Philippe Mathieu-Daudé <philmd@redhat.com> wrote: > > Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Alistair > --- > hw/i386/pc.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/hw/i386/pc.c b/hw/i386/pc.c > index 4b1904237e..3414dc423a 100644 > --- a/hw/i386/pc.c > +++ b/hw/i386/pc.c > @@ -1655,7 +1655,7 @@ void pc_memory_init(PCMachineState *pcms, > * with older qemus that used qemu_ram_alloc(). > */ > ram = g_malloc(sizeof(*ram)); > - memory_region_allocate_system_memory(ram, NULL, "pc.ram", > + memory_region_allocate_system_memory(ram, machine, "pc.ram", > machine->ram_size); > *ram_memory = ram; > ram_below_4g = g_malloc(sizeof(*ram_below_4g)); > -- > 2.21.0 > >
diff --git a/hw/i386/pc.c b/hw/i386/pc.c index 4b1904237e..3414dc423a 100644 --- a/hw/i386/pc.c +++ b/hw/i386/pc.c @@ -1655,7 +1655,7 @@ void pc_memory_init(PCMachineState *pcms, * with older qemus that used qemu_ram_alloc(). */ ram = g_malloc(sizeof(*ram)); - memory_region_allocate_system_memory(ram, NULL, "pc.ram", + memory_region_allocate_system_memory(ram, machine, "pc.ram", machine->ram_size); *ram_memory = ram; ram_below_4g = g_malloc(sizeof(*ram_below_4g));
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> --- hw/i386/pc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)