aboutsummaryrefslogtreecommitdiff
path: root/linux-user/mmap.c
diff options
context:
space:
mode:
authorAlex Bennée <alex.bennee@linaro.org>2019-12-05 12:25:14 +0000
committerAlex Bennée <alex.bennee@linaro.org>2019-12-19 08:20:16 +0000
commitd0e165ae2bdf107f3c63bf11138097869d91ef2e (patch)
tree1a2dc2ff27c2c39eb196fdb66799d064208f3581 /linux-user/mmap.c
parent5a67bb96b0c4ea9f089b97edf88f3f06a4611850 (diff)
downloadqemu-d0e165ae2bdf107f3c63bf11138097869d91ef2e.zip
qemu-d0e165ae2bdf107f3c63bf11138097869d91ef2e.tar.gz
qemu-d0e165ae2bdf107f3c63bf11138097869d91ef2e.tar.bz2
linux-user: add target_mmap_complete tracepoint
For full details we also want to see where the mmaps end up. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Laurent Vivier <laurent@vivier.eu> Message-Id: <20191205122518.10010-4-alex.bennee@linaro.org>
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 f4f10de..0b1b43a 100644
--- a/linux-user/mmap.c
+++ b/linux-user/mmap.c
@@ -538,8 +538,8 @@ abi_long target_mmap(abi_ulong start, abi_ulong len, int prot,
the_end1:
page_set_flags(start, start + len, prot | PAGE_VALID);
the_end:
+ trace_target_mmap_complete(start);
#ifdef DEBUG_MMAP
- printf("ret=0x" TARGET_ABI_FMT_lx "\n", start);
page_dump(stdout);
printf("\n");
#endif