Another issue missed in commit fdec991 is -mem-path: it needs to be rejected only for old S390 KVM, not for any S390. Not that I personally care, but the ifdeffery in qemu_ram_alloc_from_ptr() annoys me.
Note that this doesn't actually make -mem-path work, as the kernel doesn't (yet?) support large pages in the host for KVM guests. Clean it up anyway. Thanks to Christian Borntraeger for pointing out the S390 kernel limitations. Signed-off-by: Markus Armbruster <arm...@redhat.com> --- exec.c | 31 +++++++++++++++++++------------ 1 file changed, 19 insertions(+), 12 deletions(-) diff --git a/exec.c b/exec.c index 8810d33..9f0355b 100644 --- a/exec.c +++ b/exec.c @@ -849,7 +849,7 @@ void qemu_mutex_unlock_ramlist(void) qemu_mutex_unlock(&ram_list.mutex); } -#if defined(__linux__) && !defined(TARGET_S390X) +#ifdef __linux__ #include <sys/vfs.h> @@ -952,6 +952,14 @@ static void *file_ram_alloc(RAMBlock *block, block->fd = fd; return area; } +#else +static void *file_ram_alloc(RAMBlock *block, + ram_addr_t memory, + const char *path) +{ + fprintf(stderr, "-mem-path not supported on this host\n"); + exit(1); +} #endif static ram_addr_t find_ram_offset(ram_addr_t size) @@ -1088,22 +1096,21 @@ ram_addr_t qemu_ram_alloc_from_ptr(ram_addr_t size, void *host, exit(1); } xen_ram_alloc(new_block->offset, size, mr); + } else if (kvm_enabled() && kvm_arch_ram_alloc) { + /* some s390/kvm configurations have special constraints */ + if (mem_path) { + fprintf(stderr, + "-mem-path not supported with this version of KVM\n"); + exit(1); + } + new_block->host = kvm_arch_ram_alloc(size); + memory_try_enable_merging(new_block->host, size); } else { if (mem_path) { -#if defined (__linux__) && !defined(TARGET_S390X) new_block->host = file_ram_alloc(new_block, size, mem_path); -#else - fprintf(stderr, "-mem-path option unsupported\n"); - exit(1); -#endif } if (!new_block->host) { - if (kvm_enabled() && kvm_arch_ram_alloc) { - /* some s390/kvm configurations have special constraints */ - new_block->host = kvm_arch_ram_alloc(size); - } else { - new_block->host = qemu_anon_ram_alloc(size); - } + new_block->host = qemu_anon_ram_alloc(size); memory_try_enable_merging(new_block->host, size); } } -- 1.7.11.7