Re: [Qemu-devel] [PATCH v3 0/2] Introduce default ram size in MachineClass

2015-03-05 Thread Nikunj A Dadhania
Peter Maydell writes: > On 5 March 2015 at 19:24, Nikunj A Dadhania wrote: >> Rejection is also change of behaviour. Because till now, a VM would >> start with any memory size, even if it's less that 128MB >> (default_ram_size). With rejection, all those VMs would fail booting >> displaying the

Re: [Qemu-devel] [PATCH v3 0/2] Introduce default ram size in MachineClass

2015-03-05 Thread Nikunj A Dadhania
Markus Armbruster writes: > Nikunj A Dadhania writes: > >> Markus Armbruster writes: >> >>> Nikunj A Dadhania writes: >>> Current DEFAULT_RAM_SIZE(128MB) enforced by QEMU would not work for all machines. Introduce a default_ram_size as part of MachineClass. The below patche

Re: [Qemu-devel] [PATCH v3 0/2] Introduce default ram size in MachineClass

2015-03-05 Thread Markus Armbruster
Nikunj A Dadhania writes: > Markus Armbruster writes: > >> Nikunj A Dadhania writes: >> >>> Current DEFAULT_RAM_SIZE(128MB) enforced by QEMU would not work for >>> all machines. Introduce a default_ram_size as part of MachineClass. >>> >>> The below patches has following behaviour: >>> >>> 1) I

Re: [Qemu-devel] [PATCH v3 0/2] Introduce default ram size in MachineClass

2015-03-05 Thread Peter Maydell
On 5 March 2015 at 19:24, Nikunj A Dadhania wrote: > Rejection is also change of behaviour. Because till now, a VM would > start with any memory size, even if it's less that 128MB > (default_ram_size). With rejection, all those VMs would fail booting > displaying the warning. Is this OK? No. Not

Re: [Qemu-devel] [PATCH v3 0/2] Introduce default ram size in MachineClass

2015-03-05 Thread Nikunj A Dadhania
Markus Armbruster writes: > Nikunj A Dadhania writes: > >> Current DEFAULT_RAM_SIZE(128MB) enforced by QEMU would not work for >> all machines. Introduce a default_ram_size as part of MachineClass. >> >> The below patches has following behaviour: >> >> 1) If the user does not provide "-m" option

Re: [Qemu-devel] [PATCH v3 0/2] Introduce default ram size in MachineClass

2015-03-05 Thread Markus Armbruster
Nikunj A Dadhania writes: > Current DEFAULT_RAM_SIZE(128MB) enforced by QEMU would not work for > all machines. Introduce a default_ram_size as part of MachineClass. > > The below patches has following behaviour: > > 1) If the user does not provide "-m" option, machine's default ram >size wil

[Qemu-devel] [PATCH v3 0/2] Introduce default ram size in MachineClass

2015-03-05 Thread Nikunj A Dadhania
Current DEFAULT_RAM_SIZE(128MB) enforced by QEMU would not work for all machines. Introduce a default_ram_size as part of MachineClass. The below patches has following behaviour: 1) If the user does not provide "-m" option, machine's default ram size will be picked. 2) In case the user provid