Re: [Qemu-devel] [PATCH RFC 4/8] s390: Simplify the RAM allocation hook

2013-06-13 Thread Paolo Bonzini
Il 13/06/2013 03:02, Markus Armbruster ha scritto: > Less code and ifdeffery. Less ifdeffery is of course fine, but please add instead kvm_arch_ram_alloc to the other target-*/kvm.c files. It can just return NULL. I think this may affect the karma that comes from a negative diffstat, but it is m

Re: [Qemu-devel] [PATCH RFC 4/8] s390: Simplify the RAM allocation hook

2013-06-13 Thread Andreas Färber
Am 13.06.2013 09:02, schrieb Markus Armbruster: > Less code and ifdeffery. > > Signed-off-by: Markus Armbruster Reviewed-by: Andreas Färber Andreas -- SUSE LINUX Products GmbH, Maxfeldstr. 5, 90409 Nürnberg, Germany GF: Jeff Hawn, Jennifer Guild, Felix Imendörffer; HRB 16746 AG Nürnberg

[Qemu-devel] [PATCH RFC 4/8] s390: Simplify the RAM allocation hook

2013-06-13 Thread Markus Armbruster
Less code and ifdeffery. Signed-off-by: Markus Armbruster --- exec.c | 4 ++-- include/sysemu/kvm.h | 3 +-- kvm-all.c| 15 ++- target-s390x/kvm.c | 17 ++--- 4 files changed, 11 insertions(+), 28 deletions(-) diff --git a/exec.c b/exec.c in