From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57522) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YmzP3-0005JH-Qt for qemu-devel@nongnu.org; Tue, 28 Apr 2015 02:53:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YmzP0-0002QZ-4k for qemu-devel@nongnu.org; Tue, 28 Apr 2015 02:53:57 -0400 Received: from e28smtp08.in.ibm.com ([122.248.162.8]:57473) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YmzOz-0002Nv-Ev for qemu-devel@nongnu.org; Tue, 28 Apr 2015 02:53:54 -0400 Received: from /spool/local by e28smtp08.in.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Tue, 28 Apr 2015 12:23:51 +0530 From: Nikunj A Dadhania Date: Tue, 28 Apr 2015 12:23:24 +0530 Message-Id: <1430204006-10160-1-git-send-email-nikunj@linux.vnet.ibm.com> Subject: [Qemu-devel] [REBASE PATCH v5 0/2] Introduce default ram size in MachineClass List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: thuth@redhat.com, nikunj@linux.vnet.ibm.com, aik@ozlabs.ru, armbru@redhat.com, agraf@suse.de, qemu-ppc@nongnu.org, marcel.apfelbaum@gmail.com, imammedo@redhat.com, david@gibson.dropbear.id.au 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) The default behaviour of "-m" is not changed On the side note, there are other cleanup of removing ram_size, slots and maxmem from vl.c. All these are being parsed by generic code. This can be moved to machine specific property. I will take a stab at it next. Nikunj A Dadhania (2): machine: add default_ram_size to machine class spapr: override default ram size to 1GB hw/core/machine.c | 9 +++++++++ hw/ppc/spapr.c | 1 + include/hw/boards.h | 1 + include/qemu-common.h | 6 ++++++ vl.c | 30 ++++++++++++++++-------------- 5 files changed, 33 insertions(+), 14 deletions(-) -- 1.8.3.1