From: Martin KaFai Lau <martin.lau@linux.dev>
To: Rhys Rustad-Elliott <me@rhysre.net>
Cc: Alexei Starovoitov <ast@kernel.org>,
Daniel Borkmann <daniel@iogearbox.net>,
Andrii Nakryiko <andrii@kernel.org>, Song Liu <song@kernel.org>,
Yonghong Song <yhs@fb.com>,
John Fastabend <john.fastabend@gmail.com>,
KP Singh <kpsingh@kernel.org>,
Stanislav Fomichev <sdf@google.com>, Hao Luo <haoluo@google.com>,
Jiri Olsa <jolsa@kernel.org>, Mykola Lysenko <mykolal@fb.com>,
Shuah Khan <shuah@kernel.org>,
linux-kernel@vger.kernel.org, bpf@vger.kernel.org,
linux-kselftest@vger.kernel.org
Subject: Re: [PATCH bpf v2 2/2] selftests/bpf: Add access_inner_map selftest
Date: Fri, 2 Jun 2023 17:27:49 -0700 [thread overview]
Message-ID: <e405a055-6c7e-8570-3589-d8dc88f9bb26@linux.dev> (raw)
In-Reply-To: <20230602190110.47068-3-me@rhysre.net>
On 6/2/23 12:02 PM, Rhys Rustad-Elliott wrote:
> Add a selftest that accesses a BPF_MAP_TYPE_ARRAY (at a nonzero index)
> nested within a BPF_MAP_TYPE_HASH_OF_MAPS to flex a previously buggy
> case.
>
> Signed-off-by: Rhys Rustad-Elliott <me@rhysre.net>
> ---
> .../bpf/prog_tests/inner_array_lookup.c | 31 +++++++++++++
> .../bpf/progs/test_inner_array_lookup.c | 45 +++++++++++++++++++
> 2 files changed, 76 insertions(+)
> create mode 100644 tools/testing/selftests/bpf/prog_tests/inner_array_lookup.c
> create mode 100644 tools/testing/selftests/bpf/progs/test_inner_array_lookup.c
>
> diff --git a/tools/testing/selftests/bpf/prog_tests/inner_array_lookup.c b/tools/testing/selftests/bpf/prog_tests/inner_array_lookup.c
> new file mode 100644
> index 000000000000..29d4d0067c60
> --- /dev/null
> +++ b/tools/testing/selftests/bpf/prog_tests/inner_array_lookup.c
> @@ -0,0 +1,31 @@
> +// SPDX-License-Identifier: GPL-2.0-only
> +
> +#include <test_progs.h>
> +
> +#include "test_inner_array_lookup.skel.h"
> +
> +void test_inner_array_lookup(void)
> +{
> + int map1_fd, err;
> + int key = 3;
> + int val = 1;
> + struct test_inner_array_lookup *skel;
> +
> + skel = test_inner_array_lookup__open_and_load();
> + if (!ASSERT_TRUE(skel != NULL, "open_load_skeleton"))
Changed to ASSERT_OK_PTR. Similar changes to the ASSERT_TRUE below.
> + return;
> +
> + err = test_inner_array_lookup__attach(skel);
> + if (!ASSERT_TRUE(err == 0, "skeleton_attach"))
> + goto cleanup;
> +
> + map1_fd = bpf_map__fd(skel->maps.inner_map1);
> + bpf_map_update_elem(map1_fd, &key, &val, 0);
> +
> + /* Probe should have set the element at index 3 to 2 */
> + bpf_map_lookup_elem(map1_fd, &key, &val);
> + ASSERT_TRUE(val == 2, "value_is_2");
> +
> +cleanup:
> + test_inner_array_lookup__destroy(skel);
> +}
> diff --git a/tools/testing/selftests/bpf/progs/test_inner_array_lookup.c b/tools/testing/selftests/bpf/progs/test_inner_array_lookup.c
> new file mode 100644
> index 000000000000..c2c8f2fa451d
> --- /dev/null
> +++ b/tools/testing/selftests/bpf/progs/test_inner_array_lookup.c
Removed 'test_' from the filename, already mentioned in v1.
Applied. Thanks for the fix.
prev parent reply other threads:[~2023-06-03 0:27 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-02 19:01 [PATCH bpf v2 0/2] Fix elem_size not being set for inner maps Rhys Rustad-Elliott
2023-06-02 19:02 ` [PATCH bpf v2 1/2] bpf: " Rhys Rustad-Elliott
2023-06-02 19:02 ` [PATCH bpf v2 2/2] selftests/bpf: Add access_inner_map selftest Rhys Rustad-Elliott
2023-06-03 0:27 ` Martin KaFai Lau [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=e405a055-6c7e-8570-3589-d8dc88f9bb26@linux.dev \
--to=martin.lau@linux.dev \
--cc=andrii@kernel.org \
--cc=ast@kernel.org \
--cc=bpf@vger.kernel.org \
--cc=daniel@iogearbox.net \
--cc=haoluo@google.com \
--cc=john.fastabend@gmail.com \
--cc=jolsa@kernel.org \
--cc=kpsingh@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-kselftest@vger.kernel.org \
--cc=me@rhysre.net \
--cc=mykolal@fb.com \
--cc=sdf@google.com \
--cc=shuah@kernel.org \
--cc=song@kernel.org \
--cc=yhs@fb.com \
/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