From: JP Kobryn <inwardvessel@gmail.com>
To: SeongJae Park <sj@kernel.org>, Jiayuan Chen <jiayuan.chen@linux.dev>
Cc: linux-mm@kvack.org, "Jiayuan Chen" <jiayuan.chen@shopee.com>,
"Tejun Heo" <tj@kernel.org>,
"Johannes Weiner" <hannes@cmpxchg.org>,
"Michal Koutný" <mkoutny@suse.com>,
"Jonathan Corbet" <corbet@lwn.net>,
"Michal Hocko" <mhocko@kernel.org>,
"Roman Gushchin" <roman.gushchin@linux.dev>,
"Shakeel Butt" <shakeel.butt@linux.dev>,
"Muchun Song" <muchun.song@linux.dev>,
"Andrew Morton" <akpm@linux-foundation.org>,
"Yosry Ahmed" <yosry.ahmed@linux.dev>,
"Nhat Pham" <nphamcs@gmail.com>,
"Chengming Zhou" <chengming.zhou@linux.dev>,
"Shuah Khan" <shuah@kernel.org>,
cgroups@vger.kernel.org, linux-doc@vger.kernel.org,
linux-kernel@vger.kernel.org, linux-kselftest@vger.kernel.org
Subject: Re: [PATCH v2 2/2] selftests/cgroup: add test for zswap incompressible pages
Date: Sun, 8 Feb 2026 10:49:02 -0800 [thread overview]
Message-ID: <3d7e7e82-594c-4387-8dbd-2b78e888ead4@gmail.com> (raw)
In-Reply-To: <20260207013529.69681-1-sj@kernel.org>
On 2/6/26 5:35 PM, SeongJae Park wrote:
> On Fri, 6 Feb 2026 15:22:16 +0800 Jiayuan Chen <jiayuan.chen@linux.dev> wrote:
>
>> From: Jiayuan Chen <jiayuan.chen@shopee.com>
[...]
>> diff --git a/tools/testing/selftests/cgroup/test_zswap.c b/tools/testing/selftests/cgroup/test_zswap.c
>> index 64ebc3f3f203..8cb8a131357d 100644
>> --- a/tools/testing/selftests/cgroup/test_zswap.c
>> +++ b/tools/testing/selftests/cgroup/test_zswap.c
>> @@ -5,6 +5,7 @@
>> #include <unistd.h>
>> #include <stdio.h>
>> #include <signal.h>
>> +#include <fcntl.h>
>> #include <sys/sysinfo.h>
>> #include <string.h>
>> #include <sys/wait.h>
>> @@ -574,6 +575,100 @@ static int test_no_kmem_bypass(const char *root)
>> return ret;
>> }
>>
>> +static int allocate_random_and_wait(const char *cgroup, void *arg)
>> +{
>> + size_t size = (size_t)arg;
>> + char *mem;
>> + int fd;
>> + ssize_t n;
>> +
>> + mem = malloc(size);
>> + if (!mem)
>> + return -1;
>> +
>> + /* Fill with random data from /dev/urandom - incompressible */
>> + fd = open("/dev/urandom", O_RDONLY);
>> + if (fd < 0) {
>> + free(mem);
>> + return -1;
>> + }
>> +
>> + for (size_t i = 0; i < size; ) {
>> + n = read(fd, mem + i, size - i);
>> + if (n <= 0)
>> + break;
>> + i += n;
>> + }
>> + close(fd);
>> +
>> + /* Touch all pages to ensure they're faulted in */
>> + for (size_t i = 0; i < size; i += 4096)
>
> Nit. I show test_zswapin() is using PAGE_SIZE. Maybe the above code can also
> use it?
>
>> + mem[i] = mem[i];
>> +
>> + /* Keep memory alive for parent to reclaim and check stats */
>> + pause();
>> + free(mem);
>> + return 0;
>> +}
>> +
>> +static long get_zswap_incomp(const char *cgroup)
>> +{
>> + return cg_read_key_long(cgroup, "memory.stat", "zswap_incomp ");
>> +}
>> +
>> +/*
>> + * Test that incompressible pages (random data) are tracked by zswap_incomp.
>> + *
>> + * Since incompressible pages stored in zswap are charged at full PAGE_SIZE
>> + * (no memory savings), we cannot rely on memory.max pressure to push them
>> + * into zswap. Instead, we allocate random data within memory.max, then use
>> + * memory.reclaim to proactively push pages into zswap while checking the stat
>> + * before the child exits (zswap_incomp is a gauge that decreases on free).
>> + */
>> +static int test_zswap_incompressible(const char *root)
>> +{
>> + int ret = KSFT_FAIL;
>> + char *test_group;
>> + long zswap_incomp;
>> + pid_t child_pid;
>> + int child_status;
>> +
>> + test_group = cg_name(root, "zswap_incompressible_test");
>> + if (!test_group)
>> + goto out;
>> + if (cg_create(test_group))
>> + goto out;
>> + if (cg_write(test_group, "memory.max", "32M"))
>> + goto out;
>> +
>> + child_pid = cg_run_nowait(test_group, allocate_random_and_wait,
>> + (void *)MB(4));
>> + if (child_pid < 0)
>> + goto out;
>> +
>> + /* Wait for child to finish allocating */
>> + usleep(500000);
>
> We might be better to revisit here in future to avoid racy test results. But
> this seems good enough for now.
How about using some form of synchronization like an eventfd? The parent
can wait here for the child to write the event and avoid the race with
the arbitrary sleep.
prev parent reply other threads:[~2026-02-08 18:49 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-06 7:22 [PATCH v2 0/2] mm: zswap: add per-memcg stat for " Jiayuan Chen
2026-02-06 7:22 ` [PATCH v2 1/2] " Jiayuan Chen
2026-02-06 15:19 ` Yosry Ahmed
2026-02-06 17:52 ` Shakeel Butt
2026-02-07 1:21 ` SeongJae Park
2026-02-09 2:20 ` Chengming Zhou
2026-02-06 7:22 ` [PATCH v2 2/2] selftests/cgroup: add test for zswap " Jiayuan Chen
2026-02-06 18:13 ` Shakeel Butt
2026-02-06 22:50 ` Nhat Pham
2026-02-07 1:35 ` SeongJae Park
2026-02-08 18:49 ` JP Kobryn [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=3d7e7e82-594c-4387-8dbd-2b78e888ead4@gmail.com \
--to=inwardvessel@gmail.com \
--cc=akpm@linux-foundation.org \
--cc=cgroups@vger.kernel.org \
--cc=chengming.zhou@linux.dev \
--cc=corbet@lwn.net \
--cc=hannes@cmpxchg.org \
--cc=jiayuan.chen@linux.dev \
--cc=jiayuan.chen@shopee.com \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-kselftest@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mhocko@kernel.org \
--cc=mkoutny@suse.com \
--cc=muchun.song@linux.dev \
--cc=nphamcs@gmail.com \
--cc=roman.gushchin@linux.dev \
--cc=shakeel.butt@linux.dev \
--cc=shuah@kernel.org \
--cc=sj@kernel.org \
--cc=tj@kernel.org \
--cc=yosry.ahmed@linux.dev \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox