selftests/cgroup: remove ARRAY_SIZE define from cgroup_util.h
authorShuah Khan <skhan@linuxfoundation.org>
Thu, 9 Dec 2021 19:49:13 +0000 (12:49 -0700)
committerShuah Khan <skhan@linuxfoundation.org>
Sat, 11 Dec 2021 00:50:31 +0000 (17:50 -0700)
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 cgroup_util.h and pickup the one defined in
kselftest.h.

Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
tools/testing/selftests/cgroup/cgroup_util.h

index 82e59cdf16e774164f5617a2d89348b3e12e8927..4f66d10626d29c8c11a9f5f3129317666da10ea0 100644 (file)
@@ -2,9 +2,9 @@
 #include <stdbool.h>
 #include <stdlib.h>
 
-#define PAGE_SIZE 4096
+#include "../kselftest.h"
 
-#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
+#define PAGE_SIZE 4096
 
 #define MB(x) (x << 20)