diff options
Diffstat (limited to 'tools/perf/util/syscalltbl.c')
-rw-r--r-- | tools/perf/util/syscalltbl.c | 4 |
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> |
27 | const int syscalltbl_native_max_id = SYSCALLTBL_x86_64_MAX_ID; | 27 | const int syscalltbl_native_max_id = SYSCALLTBL_x86_64_MAX_ID; |
28 | static const char **syscalltbl_native = syscalltbl_x86_64; | 28 | static const char **syscalltbl_native = syscalltbl_x86_64; |
29 | #elif defined(__s390x__) | ||
30 | #include <asm/syscalls_64.c> | ||
31 | const int syscalltbl_native_max_id = SYSCALLTBL_S390_64_MAX_ID; | ||
32 | static const char **syscalltbl_native = syscalltbl_s390_64; | ||
29 | #endif | 33 | #endif |
30 | 34 | ||
31 | struct syscall { | 35 | struct syscall { |