From: Leon Hwang <leon.hwang@linux.dev>
To: Andrii Nakryiko <andrii.nakryiko@gmail.com>
Cc: bot+bpf-ci@kernel.org, bpf@vger.kernel.org, ast@kernel.org,
daniel@iogearbox.net, andrii@kernel.org, eddyz87@gmail.com,
memxor@gmail.com, martin.lau@linux.dev, song@kernel.org,
yonghong.song@linux.dev, jolsa@kernel.org, emil@etsalapatis.com,
ihor.solodrai@linux.dev, shuah@kernel.org,
linux-kselftest@vger.kernel.org, linux-kernel@vger.kernel.org,
martin.lau@kernel.org, clm@meta.com
Subject: Re: [PATCH bpf-next v2] selftests/bpf: Avoid flaky resize value test for percpu data
Date: Mon, 24 Aug 2026 13:02:37 +0800 [thread overview]
Message-ID: <90bbc900-21cd-4dfb-a058-13930378052f@linux.dev> (raw)
In-Reply-To: <CAEf4Bza6X9SZmnyqdZDFKJG5nWchuaEuFyC-MbuzQCuZ+dwq+w@mail.gmail.com>
On 22/8/26 01:58, Andrii Nakryiko wrote:
> On Tue, Aug 18, 2026 at 6:44 PM Leon Hwang <leon.hwang@linux.dev> wrote:
>>
>> On 19/8/26 00:15, bot+bpf-ci@kernel.org wrote:
>>>> diff --git a/tools/testing/selftests/bpf/prog_tests/global_data_init.c b/tools/testing/selftests/bpf/prog_tests/global_data_init.c
>>>> index 5671c31085cd..2b69290bcc3e 100644
>>>> --- a/tools/testing/selftests/bpf/prog_tests/global_data_init.c
>>>> +++ b/tools/testing/selftests/bpf/prog_tests/global_data_init.c
>>>
>>> [ ... ]
>>>
>>>> @@ -236,6 +223,57 @@ static void test_global_percpu_data_lskel(void)
>>>> test_global_percpu_data_lskel__destroy(lskel);
>>>> }
>>>>
>>>> +#define PAGE_SIZE 4096
>>>> +
>>>> +static void test_global_percpu_data_map_resize(void)
>>>> +{
>>>> + const __u32 desired_sz = sysconf(_SC_PAGE_SIZE) * 2;
>>>> + struct test_global_percpu_data *skel;
>>>> + const int arr_value = -1;
>>>> + struct bpf_map *map;
>>>> + int err, prog_fd;
>>>> + size_t data_sz;
>>>> +
>>>> + if (sysconf(_SC_PAGE_SIZE) != PAGE_SIZE) {
>>>> + test__skip();
>>>> + return;
>>>> + }
>>>> +
>>>> + skel = test_global_percpu_data__open();
>>>> + if (!ASSERT_OK_PTR(skel, "test_global_percpu_data__open"))
>>>> + return;
>>>> +
>>>> + map = skel->maps.percpu_arr;
>>>> + skel->percpu_arr->arr[0] = arr_value;
>>>> + err = bpf_map__set_value_size(map, desired_sz);
>>>
>>> This isn't a bug, but since the guard above already pins the page size to
>>> 4096, would `const __u32 desired_sz = PAGE_SIZE * 2;` read more directly
>>
>> Will change to 'PAGE_SIZE * 2' if the next revision is needed.
>>
>>> here - and is the unguarded `#define PAGE_SIZE 4096` preferable to the
>>> `#ifndef PAGE_SIZE` form used in sockopt.c?
>>
>> No. PAGE_SIZE must be 4096 here.
>>
>
> can you please elaborate why do we care about specific PAGE_SIZE
> value? it's a bit weird to guard test based on page size...
>
It is to verify the mmap change in libbpf's bpf_map_mmap_resize() for
percpu data map, like those subtests in global_map_resize.c.
Thanks,
Leon
next prev parent reply other threads:[~2026-08-24 5:02 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-18 15:32 [PATCH bpf-next v2] selftests/bpf: Avoid flaky resize value test for percpu data Leon Hwang
2026-08-18 16:15 ` bot+bpf-ci
2026-08-19 1:44 ` Leon Hwang
2026-08-21 17:58 ` Andrii Nakryiko
2026-08-24 5:02 ` Leon Hwang [this message]
2026-08-24 20:04 ` Andrii Nakryiko
2026-08-25 5:17 ` Leon Hwang
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=90bbc900-21cd-4dfb-a058-13930378052f@linux.dev \
--to=leon.hwang@linux.dev \
--cc=andrii.nakryiko@gmail.com \
--cc=andrii@kernel.org \
--cc=ast@kernel.org \
--cc=bot+bpf-ci@kernel.org \
--cc=bpf@vger.kernel.org \
--cc=clm@meta.com \
--cc=daniel@iogearbox.net \
--cc=eddyz87@gmail.com \
--cc=emil@etsalapatis.com \
--cc=ihor.solodrai@linux.dev \
--cc=jolsa@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-kselftest@vger.kernel.org \
--cc=martin.lau@kernel.org \
--cc=martin.lau@linux.dev \
--cc=memxor@gmail.com \
--cc=shuah@kernel.org \
--cc=song@kernel.org \
--cc=yonghong.song@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