[PATCH v3 0/2] Always show mmap prot even though PROT_NONE

From: Changbin Du
Date: Sat Apr 27 2024 - 23:10:37 EST


Before: PROT_NONE is not shown.
$ sudo perf trace -e syscalls:sys_enter_mmap --filter prot==0 -- ls
0.000 ls/2979231 syscalls:sys_enter_mmap(len: 4220888, flags: PRIVATE|ANONYMOUS)

After: PROT_NONE is displayed.
$ sudo perf trace -e syscalls:sys_enter_mmap --filter prot==0 -- ls
0.000 ls/2975708 syscalls:sys_enter_mmap(len: 4220888, prot: NONE, flags: PRIVATE|ANONYMOUS)

Changbin Du (2):
perf trace beauty: Always show param if show_zero is set
perf trace beauty: Always show mmap prot even though PROT_NONE

tools/perf/builtin-trace.c | 35 ++++++++++-------------------------
1 file changed, 10 insertions(+), 25 deletions(-)

--
2.34.1