diff options
author | Tiezhu Yang <[email protected]> | 2023-05-30 18:09:59 +0800 |
---|---|---|
committer | Arnaldo Carvalho de Melo <[email protected]> | 2023-06-05 11:37:05 -0300 |
commit | d6e1cc6b7220073d6d5d2edd79edf2d36da046bf (patch) | |
tree | c87706cd230e3b17d88a49b66f2f3aebaa34aee4 | |
parent | 0d0db47634611bf25bb933fec801faa91702a3ab (diff) |
perf arm64: Handle __NR3264_ prefixed syscall number
After commit 9854e7ad35fe ("perf arm64: Simplify mksyscalltbl"),
in the generated syscall table file syscalls.c, there exist some
__NR3264_ prefixed syscall numbers such as [__NR3264_ftruncate],
it looks like not so good, just do some small filter operations
to handle __NR3264_ prefixed syscall number as a digital number.
Without this patch:
[__NR3264_ftruncate] = "ftruncate",
With this patch:
[46] = "ftruncate",
Suggested-by: Alexander Kapshuk <[email protected]>
Reviewed-by: Huacai Chen <[email protected]>
Reviewed-by: Leo Yan <[email protected]>
Signed-off-by: Tiezhu Yang <[email protected]>
Acked-by: Ian Rogers <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: [email protected]
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
-rwxr-xr-x | tools/perf/arch/arm64/entry/syscalls/mksyscalltbl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/perf/arch/arm64/entry/syscalls/mksyscalltbl b/tools/perf/arch/arm64/entry/syscalls/mksyscalltbl index 84976dc5bdcf..0bcd64a74642 100755 --- a/tools/perf/arch/arm64/entry/syscalls/mksyscalltbl +++ b/tools/perf/arch/arm64/entry/syscalls/mksyscalltbl @@ -40,6 +40,7 @@ create_table() } $gcc -E -dM -x c -I $incpath/include/uapi $input \ - |sed -ne 's/^#define __NR_//p' \ - |sort -t' ' -k2 -n \ + |awk '$2 ~ "__NR" && $3 !~ "__NR3264_" { + sub("^#define __NR(3264)?_", ""); + print | "sort -k2 -n"}' \ |create_table |