summaryrefslogtreecommitdiff
path: root/linux-user/mmap.c
diff options
context:
space:
mode:
authorPaul Brook <paul@codesourcery.com>2010-03-12 23:23:29 +0000
committerPaul Brook <paul@codesourcery.com>2010-03-12 23:25:52 +0000
commitb480d9b74dfd1efd29026b7dc6438364a633ee99 (patch)
treeba5e9af2816fb452437070da74e87d15f55d7255 /linux-user/mmap.c
parent4836a2b09a94969d3d69c5c9f9ba8f58767575ca (diff)
downloadqemu-b480d9b74dfd1efd29026b7dc6438364a633ee99.tar.gz
Fix usermode virtual address type
Usermode virtual addresses are abi_ulong, not target_ulong. Signed-off-by: Paul Brook <paul@codesourcery.com>
Diffstat (limited to 'linux-user/mmap.c')
-rw-r--r--linux-user/mmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/mmap.c b/linux-user/mmap.c
index ad00b6f555..46923c707c 100644
--- a/linux-user/mmap.c
+++ b/linux-user/mmap.c
@@ -88,7 +88,7 @@ void *qemu_vmalloc(size_t size)
if (h2g_valid(p)) {
/* Allocated region overlaps guest address space. This may recurse. */
- unsigned long addr = h2g(p);
+ abi_ulong addr = h2g(p);
page_set_flags(addr & TARGET_PAGE_MASK, TARGET_PAGE_ALIGN(addr + size),
PAGE_RESERVED);
}