All of lore.kernel.org
 help / color / mirror / Atom feed
From: Leon Hwang <leon.hwang@linux.dev>
To: sashiko-reviews@lists.linux.dev
Cc: bpf@vger.kernel.org
Subject: Re: [PATCH bpf-next v5 6/9] selftests/bpf: Add tests to verify global percpu data
Date: Thu, 11 Jun 2026 13:10:18 +0800	[thread overview]
Message-ID: <3046cb92-358f-4e65-a59c-efe07a3df402@linux.dev> (raw)
In-Reply-To: <20260608152028.93D1F1F00893@smtp.kernel.org>

On 8/6/26 23:20, sashiko-bot@kernel.org wrote:
[...]
> 
>> +	/* run on every CPU */
>> +	for (i = 0; i < num_online; i++) {
>> +		__u64 flags;
>> +
>> +		if (!online[i])
>> +			continue;
>> +
>> +		topts.cpu = i;
>> +		topts.retval = 0;
>> +		err = bpf_prog_test_run_opts(prog_fd, &topts);
>> +		ASSERT_OK(err, "bpf_prog_test_run_opts");
>> +		ASSERT_EQ(topts.retval, 0, "bpf_prog_test_run_opts retval");
>> +
>> +		flags = ((__u64) i << 32) | BPF_F_CPU;
>> +		err = bpf_map__lookup_elem(map, &key, sizeof(key), data, elem_sz, flags);
> 
> [Severity: Medium]
> When looking up a per-CPU map element for a specific CPU using the BPF_F_CPU
> flag, libbpf's validate_map_op() strictly requires that value_sz exactly matches
> map->def.value_size.
> 
> By rounding up sizeof(*data) to a multiple of 8 and passing it as elem_sz
> here, doesn't this make the test brittle?
> 
> It currently passes because the underlying .percpu section happens to be
> exactly 72 bytes (a multiple of 8). If the variables in the BPF program were
> changed such that the section size was 76 bytes, the roundup would yield 80,
> which wouldn't match map->def.value_size and would cause
> bpf_map__lookup_elem() to fail with -EINVAL.
> 
> Could we use the un-rounded size here instead?
> 
Good catch.

Will drop the roundup().

Thanks,
Leon


  reply	other threads:[~2026-06-11  5:10 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-06-08 14:51 [PATCH bpf-next v5 0/9] bpf: Introduce global percpu data Leon Hwang
2026-06-08 14:51 ` [PATCH bpf-next v5 1/9] bpf: Drop duplicate blank lines in verifier Leon Hwang
2026-06-08 14:51 ` [PATCH bpf-next v5 2/9] bpf: Introduce global percpu data Leon Hwang
2026-06-08 15:13   ` sashiko-bot
2026-06-11  5:04     ` Leon Hwang
2026-06-08 15:56   ` bot+bpf-ci
2026-06-11  5:05     ` Leon Hwang
2026-06-08 14:51 ` [PATCH bpf-next v5 3/9] libbpf: Probe percpu data feature Leon Hwang
2026-06-08 15:05   ` sashiko-bot
2026-06-11  5:08     ` Leon Hwang
2026-06-08 14:51 ` [PATCH bpf-next v5 4/9] libbpf: Add support for global percpu data Leon Hwang
2026-06-08 14:51 ` [PATCH bpf-next v5 5/9] bpftool: Generate skeleton " Leon Hwang
2026-06-08 15:11   ` sashiko-bot
2026-06-11  5:09     ` Leon Hwang
2026-06-08 15:29   ` bot+bpf-ci
2026-06-11  5:09     ` Leon Hwang
2026-06-08 14:51 ` [PATCH bpf-next v5 6/9] selftests/bpf: Add tests to verify " Leon Hwang
2026-06-08 15:20   ` sashiko-bot
2026-06-11  5:10     ` Leon Hwang [this message]
2026-06-08 14:51 ` [PATCH bpf-next v5 7/9] selftests/bpf: Add tests to verify verifier log for " Leon Hwang
2026-06-08 15:22   ` sashiko-bot
2026-06-11  5:11     ` Leon Hwang
2026-06-08 14:51 ` [PATCH bpf-next v5 8/9] selftests/bpf: Add test to verify xlated insns " Leon Hwang
2026-06-08 15:21   ` sashiko-bot
2026-06-11  5:12     ` Leon Hwang
2026-06-08 14:51 ` [PATCH bpf-next v5 9/9] selftests/bpf: Add test to verify bpf_iter " 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=3046cb92-358f-4e65-a59c-efe07a3df402@linux.dev \
    --to=leon.hwang@linux.dev \
    --cc=bpf@vger.kernel.org \
    --cc=sashiko-reviews@lists.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.