diff options
author | Richard Henderson <rth@twiddle.net> | 2010-03-10 15:39:07 -0800 |
---|---|---|
committer | Paul Brook <paul@codesourcery.com> | 2010-03-12 16:29:18 +0000 |
commit | 14f24e1465edc44b9b4d89fbbea66e06088154e1 (patch) | |
tree | a4d7af58d82337b45a4566a5c3f7d3d15b18a584 /linux-user/qemu.h | |
parent | 7bc7b099dfa38a856b1bc892c0f9f3d6fe28e170 (diff) | |
download | qemu-14f24e1465edc44b9b4d89fbbea66e06088154e1.zip qemu-14f24e1465edc44b9b4d89fbbea66e06088154e1.tar.gz qemu-14f24e1465edc44b9b4d89fbbea66e06088154e1.tar.bz2 |
linux-user: Fix mmap_find_vma returning invalid addresses.
Don't return addresses that aren't properly aligned for the guest,
e.g. when the guest has a larger page size than the host. Don't
return addresses that are outside the virtual address space for the
target, by paying proper attention to the h2g/g2h macros.
At the same time, place the default mapping base for 64-bit guests
(on 64-bit hosts) outside the low 4G. Consistently interpret
mmap_next_start in the guest address space.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'linux-user/qemu.h')
-rw-r--r-- | linux-user/qemu.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/linux-user/qemu.h b/linux-user/qemu.h index d129deb..6ab9517 100644 --- a/linux-user/qemu.h +++ b/linux-user/qemu.h @@ -133,9 +133,7 @@ void init_task_state(TaskState *ts); void task_settid(TaskState *); void stop_all_tasks(void); extern const char *qemu_uname_release; -#if defined(CONFIG_USE_GUEST_BASE) extern unsigned long mmap_min_addr; -#endif /* ??? See if we can avoid exposing so much of the loader internals. */ /* |