From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60006) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UpGoQ-0008Pk-Nd for qemu-devel@nongnu.org; Wed, 19 Jun 2013 07:44:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UpGoP-0001Mw-4U for qemu-devel@nongnu.org; Wed, 19 Jun 2013 07:44:30 -0400 Received: from oxygen.pond.sub.org ([2a01:4f8:121:10e4::3]:35630) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UpGoO-0001M4-Sv for qemu-devel@nongnu.org; Wed, 19 Jun 2013 07:44:29 -0400 From: Markus Armbruster Date: Wed, 19 Jun 2013 13:44:16 +0200 Message-Id: <1371642264-17704-1-git-send-email-armbru@redhat.com> Subject: [Qemu-devel] [PATCH 0/8] ] Guest memory allocation fixes & cleanup List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, stefano.stabellini@eu.citrix.com, mtosatti@redhat.com, agraf@suse.de, borntraeger@de.ibm.com, pbonzini@redhat.com, afaerber@suse.de, rth@twiddle.net All I wanted to do is exit(1) instead of abort() on guest memory allocation failure [07/08]. But that lead me into a minor #ifdef bog, and here's what I brought back. Enjoy! Testing: * Christian Borntraeger reports this version works fine under LPAR (new S390 KVM, i.e. generic allocation) and as second guest under z/VM (old S390 KVM, i.e. legacy S390 allocation). Thanks for testing, and for catching a stupid mistake. Changes since RFC: * 1-3+8/8 unchanged except for commit message tweaks * 4+6/8 rewritten to address Paolo's review * 5/8 rewritten: don't fix dead code, just assert it's dead * 7/8 fix mistakes caught by Richard Henderson and Peter Maydell Markus Armbruster (8): exec: Fix Xen RAM allocation with unusual options exec: Clean up fall back when -mem-path allocation fails exec: Reduce ifdeffery around -mem-path exec: Simplify the guest physical memory allocation hook exec: Drop incorrect & dead S390 code in qemu_ram_remap() exec: Clean up unnecessary S390 ifdeffery exec: Don't abort when we can't allocate guest memory pc_sysfw: Fix ISA BIOS init for ridiculously big flash exec.c | 121 ++++++++++++++++++++++++++---------------------- hw/block/pc_sysfw.c | 5 +- include/exec/cpu-all.h | 2 - include/exec/exec-all.h | 2 + include/sysemu/kvm.h | 5 -- kvm-all.c | 13 ------ target-s390x/kvm.c | 23 +++------ util/oslib-posix.c | 4 +- util/oslib-win32.c | 5 +- 9 files changed, 78 insertions(+), 102 deletions(-) -- 1.7.11.7