summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorDavid Hildenbrand <david@redhat.com>2018-06-28 13:38:17 +0200
committerCornelia Huck <cohuck@redhat.com>2018-07-02 10:37:38 +0200
commitd44444b0740680d996c979c8c3f63ab1c87f1cb1 (patch)
tree1cc22b94ae53a3be5c5bfad620edfbd5f5d55362
parent8151942151fe1cbf072414d8822b80b00abfbf42 (diff)
downloadfocaccia-qemu-d44444b0740680d996c979c8c3f63ab1c87f1cb1.tar.gz
focaccia-qemu-d44444b0740680d996c979c8c3f63ab1c87f1cb1.zip
s390x/kvm: indicate alignment in legacy_s390_alloc()
Let's do this for completeness reason, although we don't support e.g.
PCDIMM/NVDIMM, which would use the alignment for placing the memory
region in guest physical memory. But maybe someday we would want to
support something like this - then we don't forget about this if
allowing multiple allocations in legacy_s390_alloc().

Use the same alignment as we would set in qemu_anon_ram_alloc(). Our
fixed address satisfies this alignment (1MB). This implicitly sets the
alignment of the underlying memory region.

Signed-off-by: David Hildenbrand <david@redhat.com>
Message-Id: <20180628113817.30814-3-david@redhat.com>
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
-rw-r--r--target/s390x/kvm.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/target/s390x/kvm.c b/target/s390x/kvm.c
index a9d6d606df..d923cf4240 100644
--- a/target/s390x/kvm.c
+++ b/target/s390x/kvm.c
@@ -765,6 +765,9 @@ static void *legacy_s390_alloc(size_t size, uint64_t *align, bool shared)
     if (mem == MAP_FAILED) {
         mem = NULL;
     }
+    if (mem && align) {
+        *align = QEMU_VMALLOC_ALIGN;
+    }
     return mem;
 }