diff options
author | Shuah Khan <skhan@linuxfoundation.org> | 2021-12-09 12:49:13 -0700 |
---|---|---|
committer | Shuah Khan <skhan@linuxfoundation.org> | 2021-12-10 17:50:31 -0700 |
commit | 72a571d1e25f732ae7d50b9566ad68ce87c733d9 (patch) | |
tree | d7b5fe0577030ff349d861c607b446ff6ecae8c2 /tools/testing/selftests/cgroup | |
parent | 2684618b61189544aa4a539fb5df9eb074de8ce6 (diff) | |
download | lwn-72a571d1e25f732ae7d50b9566ad68ce87c733d9.tar.gz lwn-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.h | 4 |
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) |