From: Shuah Khan Date: Thu, 9 Dec 2021 23:20:53 +0000 (-0700) Subject: selftests/seccomp: remove ARRAY_SIZE define from seccomp_benchmark X-Git-Tag: v5.17-rc1~175^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6e5eba2e336694b88e3ef6584a25e0723c173ae2;p=thirdparty%2Fkernel%2Flinux.git selftests/seccomp: remove ARRAY_SIZE define from seccomp_benchmark ARRAY_SIZE is defined in several selftests. Remove definitions from individual test files and include header file for the define instead. ARRAY_SIZE define is added in a separate patch to prepare for this change. Remove ARRAY_SIZE from seccomp_benchmark and pickup the one defined in kselftest.h. Signed-off-by: Shuah Khan --- diff --git a/tools/testing/selftests/seccomp/seccomp_benchmark.c b/tools/testing/selftests/seccomp/seccomp_benchmark.c index 6e5102a7d7c9e..5b5c9d558dee0 100644 --- a/tools/testing/selftests/seccomp/seccomp_benchmark.c +++ b/tools/testing/selftests/seccomp/seccomp_benchmark.c @@ -18,7 +18,7 @@ #include #include -#define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0])) +#include "../kselftest.h" unsigned long long timing(clockid_t clk_id, unsigned long long samples) {