aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/cgroup
diff options
context:
space:
mode:
authorShuah Khan <skhan@linuxfoundation.org>2021-12-09 12:49:13 -0700
committerShuah Khan <skhan@linuxfoundation.org>2021-12-10 17:50:31 -0700
commit72a571d1e25f732ae7d50b9566ad68ce87c733d9 (patch)
treed7b5fe0577030ff349d861c607b446ff6ecae8c2 /tools/testing/selftests/cgroup
parentselftests/arm64: remove ARRAY_SIZE define from vec-syscfg.c (diff)
downloadlinux-dev-72a571d1e25f732ae7d50b9566ad68ce87c733d9.tar.xz
linux-dev-72a571d1e25f732ae7d50b9566ad68ce87c733d9.zip
selftests/cgroup: remove ARRAY_SIZE define from cgroup_util.h
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>
Diffstat (limited to 'tools/testing/selftests/cgroup')
-rw-r--r--tools/testing/selftests/cgroup/cgroup_util.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/testing/selftests/cgroup/cgroup_util.h b/tools/testing/selftests/cgroup/cgroup_util.h
index 82e59cdf16e7..4f66d10626d2 100644
--- a/tools/testing/selftests/cgroup/cgroup_util.h
+++ b/tools/testing/selftests/cgroup/cgroup_util.h
@@ -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)