projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
55bbe4d
)
linux-user: Add missing MAP_HUGETLB and MAP_STACK flags in strace
author
Helge Deller
<deller@gmx.de>
Tue, 13 Dec 2022 16:02:24 +0000
(17:02 +0100)
committer
Laurent Vivier
<laurent@vivier.eu>
Fri, 3 Feb 2023 21:55:12 +0000
(22:55 +0100)
Add two missing mmap flags.
Signed-off-by: Helge Deller <deller@gmx.de>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Message-Id: <Y5iiED4PpnGAHpyz@p100>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
linux-user/strace.c
patch
|
blob
|
history
diff --git
a/linux-user/strace.c
b/linux-user/strace.c
index 7bccb4f0c0675da24f02a463f2239fffe175a735..5027289bdde42430540b5a4023578471ac3cd17a 100644
(file)
--- a/
linux-user/strace.c
+++ b/
linux-user/strace.c
@@
-1057,6
+1057,8
@@
UNUSED static const struct flags mmap_flags[] = {
#ifdef TARGET_MAP_UNINITIALIZED
FLAG_TARGET(MAP_UNINITIALIZED),
#endif
+ FLAG_TARGET(MAP_HUGETLB),
+ FLAG_TARGET(MAP_STACK),
FLAG_END,
};