Message ID | 20221028095632.1081262-7-alistair.francis@opensource.wdc.com (mailing list archive) |
---|---|
State | Not Applicable |
Headers | show |
Series | Fixup perf tests for 32-bit systems with 64-bit time_t | expand |
Context | Check | Description |
---|---|---|
conchuod/cover_letter | success | Series has a cover letter |
conchuod/tree_selection | success | Guessed tree name to be for-next |
conchuod/patch_count | success | Link |
conchuod/fixes_present | success | Fixes tag not required for -next series |
conchuod/verify_signedoff | success | Signed-off-by tag matches author and committer |
conchuod/header_inline | success | No static functions without inline keyword in header files |
conchuod/verify_fixes | success | No Fixes tag |
conchuod/checkpatch | warning | WARNING: line length of 87 exceeds 80 columns |
conchuod/kdoc | success | Errors and warnings before: 1 this patch: 1 |
conchuod/source_inline | success | Was 0 now: 0 |
conchuod/cc_maintainers | warning | 7 maintainers not CCed: palmer@dabbelt.com conor.dooley@microchip.com paul.walmsley@sifive.com linux-kselftest@vger.kernel.org aou@eecs.berkeley.edu shuah@kernel.org andrealmeid@igalia.com |
conchuod/build_warn_rv64 | fail | Errors and warnings before: 0 this patch: 0 |
conchuod/module_param | success | Was 0 now: 0 |
diff --git a/tools/testing/selftests/futex/include/futex2test.h b/tools/testing/selftests/futex/include/futex2test.h index 9d305520e849..fdc0a0a270cd 100644 --- a/tools/testing/selftests/futex/include/futex2test.h +++ b/tools/testing/selftests/futex/include/futex2test.h @@ -5,6 +5,7 @@ * Copyright 2021 Collabora Ltd. */ #include <stdint.h> +#include <linux/futex_syscall.h> #define u64_to_ptr(x) ((void *)(uintptr_t)(x)) @@ -18,5 +19,5 @@ static inline int futex_waitv(volatile struct futex_waitv *waiters, unsigned long nr_waiters, unsigned long flags, struct timespec *timo, clockid_t clockid) { - return syscall(__NR_futex_waitv, waiters, nr_waiters, flags, timo, clockid); + return __kernel_futex_syscall_waitv(waiters, nr_waiters, flags, timo, clockid); }