aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/util/syscalltbl.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/perf/util/syscalltbl.c')
-rw-r--r--tools/perf/util/syscalltbl.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/perf/util/syscalltbl.c b/tools/perf/util/syscalltbl.c
index 6eea7cff3d4e..303bdb84ab5a 100644
--- a/tools/perf/util/syscalltbl.c
+++ b/tools/perf/util/syscalltbl.c
@@ -26,6 +26,10 @@
26#include <asm/syscalls_64.c> 26#include <asm/syscalls_64.c>
27const int syscalltbl_native_max_id = SYSCALLTBL_x86_64_MAX_ID; 27const int syscalltbl_native_max_id = SYSCALLTBL_x86_64_MAX_ID;
28static const char **syscalltbl_native = syscalltbl_x86_64; 28static const char **syscalltbl_native = syscalltbl_x86_64;
29#elif defined(__s390x__)
30#include <asm/syscalls_64.c>
31const int syscalltbl_native_max_id = SYSCALLTBL_S390_64_MAX_ID;
32static const char **syscalltbl_native = syscalltbl_s390_64;
29#endif 33#endif
30 34
31struct syscall { 35struct syscall {