linux-user: fix mmap_find_vma_reserved()
commitdc18baaef36d95e5a7b4fbc60daff3d92afe737c
authorLaurent Vivier <laurent@vivier.eu>
Sat, 14 Jul 2018 19:35:53 +0000 (14 21:35 +0200)
committerLaurent Vivier <laurent@vivier.eu>
Sun, 15 Jul 2018 14:01:31 +0000 (15 16:01 +0200)
treeac3fd3863cbe6848c5cfd1ac599e6a790a626295
parentaf8ab2bf223e1e4406108708b47476ef0d148a52
linux-user: fix mmap_find_vma_reserved()

The value given by mmap_find_vma_reserved() is used with mmap(),
so it is needed to be aligned with the host page size.

Since commit 18e80c55bb, reserved_va is only aligned to TARGET_PAGE_SIZE,
and it works well if this size is greater or equal to the host page size.

But ppc64 hosts have 64kB page size and when we start a 4kiB page size
guest (like i386), it fails when it tries to mmap the stack:

    mmap stack: Invalid argument

Fixes: 18e80c55bb (linux-user: Tidy and enforce reserved_va initialization)
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20180714193553.30846-1-laurent@vivier.eu>
linux-user/main.c