Re: [Qemu-devel] [PATCH v2] Introduce machine specific default memory size

2015-03-04 Thread Igor Mammedov
On Wed, 04 Mar 2015 14:32:44 +0200 Marcel Apfelbaum wrote: > On 03/04/2015 02:21 PM, Igor Mammedov wrote: > > On Wed, 4 Mar 2015 16:48:05 +0530 > > Nikunj A Dadhania wrote: > > > >> QEMU default memory of 128MB is not enough to boot sPAPR > >> guest. Introduce a member in the machine class to o

Re: [Qemu-devel] [PATCH v2] Introduce machine specific default memory size

2015-03-04 Thread Marcel Apfelbaum
On 03/04/2015 02:21 PM, Igor Mammedov wrote: On Wed, 4 Mar 2015 16:48:05 +0530 Nikunj A Dadhania wrote: QEMU default memory of 128MB is not enough to boot sPAPR guest. Introduce a member in the machine class to override the default memory size enforced by QEMU. now we have DEFAULT_RAM_SIZE

Re: [Qemu-devel] [PATCH v2] Introduce machine specific default memory size

2015-03-04 Thread Marcel Apfelbaum
On 03/04/2015 01:18 PM, Nikunj A Dadhania wrote: QEMU default memory of 128MB is not enough to boot sPAPR guest. Introduce a member in the machine class to override the default memory size enforced by QEMU. Signed-off-by: Nikunj A Dadhania Hi, Thank you for contributing to QEMU! --- hw/ppc

Re: [Qemu-devel] [PATCH v2] Introduce machine specific default memory size

2015-03-04 Thread Igor Mammedov
On Wed, 4 Mar 2015 16:48:05 +0530 Nikunj A Dadhania wrote: > QEMU default memory of 128MB is not enough to boot sPAPR > guest. Introduce a member in the machine class to override the default > memory size enforced by QEMU. > now we have DEFAULT_RAM_SIZE in vl.c and default_ram_size in Machine c

[Qemu-devel] [PATCH v2] Introduce machine specific default memory size

2015-03-04 Thread Nikunj A Dadhania
QEMU default memory of 128MB is not enough to boot sPAPR guest. Introduce a member in the machine class to override the default memory size enforced by QEMU. Signed-off-by: Nikunj A Dadhania --- hw/ppc/spapr.c | 1 + include/hw/boards.h| 1 + include/hw/ppc/spapr.h | 3 +++ vl.c