The cgroup utility code defines a local PAGE_SIZE macro hardcoded to
4096, which is used primarily as a generic buffer size for reading cgroup
and proc files. This naming is misleading because the value has nothing
to do with the actual page size of the system. On architectures with larger
pages (e.g., 64K on arm64 or ppc64), the name suggests a relationship that
does not exist. Additionally, the name can shadow or conflict with PAGE_SIZE
definitions from system headers, leading to confusion or subtle bugs.

To resolve this, rename the macro to BUF_SIZE to accurately reflect its
purpose as a general I/O buffer size.

Furthermore, test_memcontrol currently relies on this hardcoded 4K value
to stride through memory and trigger page faults. Update this logic to
use the actual system page size dynamically. This micro-optimizes the
memory faulting process by ensuring it iterates correctly and efficiently
based on the underlying architecture's true page size. (This part from Waiman)

Signed-off-by: Li Wang <[email protected]>
Signed-off-by: Waiman Long <[email protected]>
Cc: Johannes Weiner <[email protected]>
Cc: Michal Hocko <[email protected]>
Cc: Michal Koutný <[email protected]>
Cc: Muchun Song <[email protected]>
Cc: Nhat Pham <[email protected]>
Cc: Tejun Heo <[email protected]>
Cc: Roman Gushchin <[email protected]>
Cc: Shakeel Butt <[email protected]>
Cc: Yosry Ahmed <[email protected]>
---

Notes:
    v5:
        - Merge Waiman's work into this patch (use page_size)
    v4:
        - Use page_size instead of BUF_SIZE in test_memcontrol.c
    
    v3, v2, v1:
        - No changes.

 .../selftests/cgroup/lib/cgroup_util.c        | 18 +++++++++---------
 .../cgroup/lib/include/cgroup_util.h          |  4 ++--
 tools/testing/selftests/cgroup/test_core.c    |  2 +-
 tools/testing/selftests/cgroup/test_freezer.c |  2 +-
 .../selftests/cgroup/test_memcontrol.c        | 19 ++++++++++++-------
 5 files changed, 25 insertions(+), 20 deletions(-)

diff --git a/tools/testing/selftests/cgroup/lib/cgroup_util.c 
b/tools/testing/selftests/cgroup/lib/cgroup_util.c
index ce6c2642fd9b..0be525ed11db 100644
--- a/tools/testing/selftests/cgroup/lib/cgroup_util.c
+++ b/tools/testing/selftests/cgroup/lib/cgroup_util.c
@@ -125,7 +125,7 @@ int cg_read_strcmp(const char *cgroup, const char *control,
 
 int cg_read_strstr(const char *cgroup, const char *control, const char *needle)
 {
-       char buf[PAGE_SIZE];
+       char buf[BUF_SIZE];
 
        if (cg_read(cgroup, control, buf, sizeof(buf)))
                return -1;
@@ -155,7 +155,7 @@ long cg_read_long_fd(int fd)
 
 long cg_read_key_long(const char *cgroup, const char *control, const char *key)
 {
-       char buf[PAGE_SIZE];
+       char buf[BUF_SIZE];
        char *ptr;
 
        if (cg_read(cgroup, control, buf, sizeof(buf)))
@@ -191,7 +191,7 @@ long cg_read_key_long_poll(const char *cgroup, const char 
*control,
 
 long cg_read_lc(const char *cgroup, const char *control)
 {
-       char buf[PAGE_SIZE];
+       char buf[BUF_SIZE];
        const char delim[] = "\n";
        char *line;
        long cnt = 0;
@@ -243,7 +243,7 @@ int cg_write_numeric(const char *cgroup, const char 
*control, long value)
 static int cg_find_root(char *root, size_t len, const char *controller,
                        bool *nsdelegate)
 {
-       char buf[10 * PAGE_SIZE];
+       char buf[10 * BUF_SIZE];
        char *fs, *mount, *type, *options;
        const char delim[] = "\n\t ";
 
@@ -298,7 +298,7 @@ int cg_create(const char *cgroup)
 
 int cg_wait_for_proc_count(const char *cgroup, int count)
 {
-       char buf[10 * PAGE_SIZE] = {0};
+       char buf[10 * BUF_SIZE] = {0};
        int attempts;
        char *ptr;
 
@@ -323,7 +323,7 @@ int cg_wait_for_proc_count(const char *cgroup, int count)
 
 int cg_killall(const char *cgroup)
 {
-       char buf[PAGE_SIZE];
+       char buf[BUF_SIZE];
        char *ptr = buf;
 
        /* If cgroup.kill exists use it. */
@@ -533,7 +533,7 @@ int cg_run_nowait(const char *cgroup,
 
 int proc_mount_contains(const char *option)
 {
-       char buf[4 * PAGE_SIZE];
+       char buf[4 * BUF_SIZE];
        ssize_t read;
 
        read = read_text("/proc/mounts", buf, sizeof(buf));
@@ -545,7 +545,7 @@ int proc_mount_contains(const char *option)
 
 int cgroup_feature(const char *feature)
 {
-       char buf[PAGE_SIZE];
+       char buf[BUF_SIZE];
        ssize_t read;
 
        read = read_text("/sys/kernel/cgroup/features", buf, sizeof(buf));
@@ -572,7 +572,7 @@ ssize_t proc_read_text(int pid, bool thread, const char 
*item, char *buf, size_t
 
 int proc_read_strstr(int pid, bool thread, const char *item, const char 
*needle)
 {
-       char buf[PAGE_SIZE];
+       char buf[BUF_SIZE];
 
        if (proc_read_text(pid, thread, item, buf, sizeof(buf)) < 0)
                return -1;
diff --git a/tools/testing/selftests/cgroup/lib/include/cgroup_util.h 
b/tools/testing/selftests/cgroup/lib/include/cgroup_util.h
index 77f386dab5e8..ca4a161c17a4 100644
--- a/tools/testing/selftests/cgroup/lib/include/cgroup_util.h
+++ b/tools/testing/selftests/cgroup/lib/include/cgroup_util.h
@@ -2,8 +2,8 @@
 #include <stdbool.h>
 #include <stdlib.h>
 
-#ifndef PAGE_SIZE
-#define PAGE_SIZE 4096
+#ifndef BUF_SIZE
+#define BUF_SIZE 4096
 #endif
 
 #define MB(x) (x << 20)
diff --git a/tools/testing/selftests/cgroup/test_core.c 
b/tools/testing/selftests/cgroup/test_core.c
index 102262555a59..df7fac7e5554 100644
--- a/tools/testing/selftests/cgroup/test_core.c
+++ b/tools/testing/selftests/cgroup/test_core.c
@@ -87,7 +87,7 @@ static int test_cgcore_destroy(const char *root)
        int ret = KSFT_FAIL;
        char *cg_test = NULL;
        int child_pid;
-       char buf[PAGE_SIZE];
+       char buf[BUF_SIZE];
 
        cg_test = cg_name(root, "cg_test");
 
diff --git a/tools/testing/selftests/cgroup/test_freezer.c 
b/tools/testing/selftests/cgroup/test_freezer.c
index 97fae92c8387..160a9e6ad277 100644
--- a/tools/testing/selftests/cgroup/test_freezer.c
+++ b/tools/testing/selftests/cgroup/test_freezer.c
@@ -642,7 +642,7 @@ static int test_cgfreezer_ptrace(const char *root)
  */
 static int proc_check_stopped(int pid)
 {
-       char buf[PAGE_SIZE];
+       char buf[BUF_SIZE];
        int len;
 
        len = proc_read_text(pid, 0, "stat", buf, sizeof(buf));
diff --git a/tools/testing/selftests/cgroup/test_memcontrol.c 
b/tools/testing/selftests/cgroup/test_memcontrol.c
index 2fb096a2a9f9..94d7b9de978c 100644
--- a/tools/testing/selftests/cgroup/test_memcontrol.c
+++ b/tools/testing/selftests/cgroup/test_memcontrol.c
@@ -25,6 +25,7 @@
 
 static bool has_localevents;
 static bool has_recursiveprot;
+static size_t page_size;
 
 int get_temp_fd(void)
 {
@@ -33,7 +34,7 @@ int get_temp_fd(void)
 
 int alloc_pagecache(int fd, size_t size)
 {
-       char buf[PAGE_SIZE];
+       char buf[BUF_SIZE];
        struct stat st;
        int i;
 
@@ -60,7 +61,7 @@ int alloc_anon(const char *cgroup, void *arg)
        char *buf, *ptr;
 
        buf = malloc(size);
-       for (ptr = buf; ptr < buf + size; ptr += PAGE_SIZE)
+       for (ptr = buf; ptr < buf + size; ptr += BUF_SIZE)
                *ptr = 0;
 
        free(buf);
@@ -69,7 +70,7 @@ int alloc_anon(const char *cgroup, void *arg)
 
 int is_swap_enabled(void)
 {
-       char buf[PAGE_SIZE];
+       char buf[BUF_SIZE];
        const char delim[] = "\n";
        int cnt = 0;
        char *line;
@@ -112,7 +113,7 @@ static int test_memcg_subtree_control(const char *root)
 {
        char *parent, *child, *parent2 = NULL, *child2 = NULL;
        int ret = KSFT_FAIL;
-       char buf[PAGE_SIZE];
+       char buf[BUF_SIZE];
 
        /* Create two nested cgroups with the memory controller enabled */
        parent = cg_name(root, "memcg_test_0");
@@ -183,7 +184,7 @@ static int alloc_anon_50M_check(const char *cgroup, void 
*arg)
                return -1;
        }
 
-       for (ptr = buf; ptr < buf + size; ptr += PAGE_SIZE)
+       for (ptr = buf; ptr < buf + size; ptr += page_size)
                *ptr = 0;
 
        current = cg_read_long(cgroup, "memory.current");
@@ -413,7 +414,7 @@ static int alloc_anon_noexit(const char *cgroup, void *arg)
                return -1;
        }
 
-       for (ptr = buf; ptr < buf + size; ptr += PAGE_SIZE)
+       for (ptr = buf; ptr < buf + size; ptr += page_size)
                *ptr = 0;
 
        while (getppid() == ppid)
@@ -999,7 +1000,7 @@ static int alloc_anon_50M_check_swap(const char *cgroup, 
void *arg)
                return -1;
        }
 
-       for (ptr = buf; ptr < buf + size; ptr += PAGE_SIZE)
+       for (ptr = buf; ptr < buf + size; ptr += page_size)
                *ptr = 0;
 
        mem_current = cg_read_long(cgroup, "memory.current");
@@ -1670,6 +1671,10 @@ int main(int argc, char **argv)
        char root[PATH_MAX];
        int i, proc_status;
 
+       page_size = sysconf(_SC_PAGE_SIZE);
+       if (page_size <= 0)
+               page_size = BUF_SIZE;
+
        ksft_print_header();
        ksft_set_plan(ARRAY_SIZE(tests));
        if (cg_find_unified_root(root, sizeof(root), NULL))
-- 
2.53.0


Reply via email to