From 56bc8397c8304a6b86828e4dd658d07f05577f72 Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Thu, 1 Dec 2022 11:39:45 -0500 Subject: [PATCH] Fix: in_x32_syscall was introduced in v4.7.0 Prior to v4.7.0, is_x32_task() was the API to query whether the current system call is following the x32 ABI. Signed-off-by: Mathieu Desnoyers Change-Id: I51f4f07f94592eaed5c55883247744d59f90fce1 --- lttng-syscalls.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/lttng-syscalls.c b/lttng-syscalls.c index 3399c9b0..97a12c48 100644 --- a/lttng-syscalls.c +++ b/lttng-syscalls.c @@ -27,6 +27,7 @@ #include #include #include +#include #ifndef CONFIG_COMPAT # ifndef is_compat_task @@ -36,7 +37,14 @@ /* in_compat_syscall appears in kernel 4.6. */ #ifndef in_compat_syscall - #define in_compat_syscall() is_compat_task() +# define in_compat_syscall() is_compat_task() +#endif + +/* in_x32_syscall appears in kernel 4.7. */ +#if (LTTNG_LINUX_VERSION_CODE < LTTNG_KERNEL_VERSION(4,7,0)) +# ifdef CONFIG_X86_X32_ABI +# define in_x32_syscall() is_x32_task() +# endif #endif enum sc_type { -- 2.34.1