[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CAJ8uoz2crsRkuCNPxrpBc0oZwgeprboVQW8Zxh-9CWHb_Ze4Hw@mail.gmail.com>
Date: Mon, 3 Apr 2023 14:25:18 +0200
From: Magnus Karlsson <magnus.karlsson@...il.com>
To: Kal Conley <kal.conley@...tris.com>
Cc: Björn Töpel <bjorn@...nel.org>,
Magnus Karlsson <magnus.karlsson@...el.com>,
Maciej Fijalkowski <maciej.fijalkowski@...el.com>,
Jonathan Lemon <jonathan.lemon@...il.com>,
Andrii Nakryiko <andrii@...nel.org>,
Mykola Lysenko <mykolal@...com>,
Alexei Starovoitov <ast@...nel.org>,
Daniel Borkmann <daniel@...earbox.net>,
Martin KaFai Lau <martin.lau@...ux.dev>,
Song Liu <song@...nel.org>, Yonghong Song <yhs@...com>,
John Fastabend <john.fastabend@...il.com>,
KP Singh <kpsingh@...nel.org>,
Stanislav Fomichev <sdf@...gle.com>,
Hao Luo <haoluo@...gle.com>, Jiri Olsa <jolsa@...nel.org>,
Shuah Khan <shuah@...nel.org>, netdev@...r.kernel.org,
bpf@...r.kernel.org, linux-kselftest@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH bpf-next v2 07/10] selftests: xsk: Add test UNALIGNED_INV_DESC_4K1_FRAME_SIZE
On Wed, 29 Mar 2023 at 20:12, Kal Conley <kal.conley@...tris.com> wrote:
>
> Add unaligned descriptor test for frame size of 4001. Using an odd frame
> size ensures that the end of the UMEM is not near a page boundary. This
> allows testing descriptors that staddle the end of the UMEM but not a
nit: straddle
> page.
>
> This test used to fail without the previous commit ("xsk: Add check for
> unaligned descriptors that overrun UMEM").
>
> Signed-off-by: Kal Conley <kal.conley@...tris.com>
> ---
> tools/testing/selftests/bpf/xskxceiver.c | 25 ++++++++++++++++++++++++
> tools/testing/selftests/bpf/xskxceiver.h | 1 +
> 2 files changed, 26 insertions(+)
>
> diff --git a/tools/testing/selftests/bpf/xskxceiver.c b/tools/testing/selftests/bpf/xskxceiver.c
> index 1a4bdd5aa78c..9b9efd0e0a4c 100644
> --- a/tools/testing/selftests/bpf/xskxceiver.c
> +++ b/tools/testing/selftests/bpf/xskxceiver.c
> @@ -69,6 +69,7 @@
> */
>
> #define _GNU_SOURCE
> +#include <assert.h>
> #include <fcntl.h>
> #include <errno.h>
> #include <getopt.h>
> @@ -1876,6 +1877,30 @@ static void run_pkt_test(struct test_spec *test, enum test_mode mode, enum test_
> test->ifobj_rx->umem->unaligned_mode = true;
> testapp_invalid_desc(test);
> break;
> + case TEST_TYPE_UNALIGNED_INV_DESC_4K1_FRAME:
> + if (!hugepages_present(test->ifobj_tx)) {
> + ksft_test_result_skip("No 2M huge pages present.\n");
> + return;
> + }
> + test_spec_set_name(test, "UNALIGNED_INV_DESC_4K1_FRAME_SIZE");
> + /* Odd frame size so the UMEM doesn't end near a page boundary. */
> + test->ifobj_tx->umem->frame_size = 4001;
> + test->ifobj_rx->umem->frame_size = 4001;
> + test->ifobj_tx->umem->unaligned_mode = true;
> + test->ifobj_rx->umem->unaligned_mode = true;
> + /* This test exists to test descriptors that staddle the end of
nit: straddle
> + * the UMEM but not a page.
> + */
> + {
> + u64 umem_size = test->ifobj_tx->umem->num_frames *
> + test->ifobj_tx->umem->frame_size;
> + u64 page_size = sysconf(_SC_PAGESIZE);
> +
> + assert(umem_size % page_size > PKT_SIZE);
> + assert(umem_size % page_size < page_size - PKT_SIZE);
> + }
> + testapp_invalid_desc(test);
Please put this code in a function that you call. Declare your local
variables in the beginning of that function.
> + break;
> case TEST_TYPE_UNALIGNED:
> if (!testapp_unaligned(test))
> return;
> diff --git a/tools/testing/selftests/bpf/xskxceiver.h b/tools/testing/selftests/bpf/xskxceiver.h
> index cc24ab72f3ff..919327807a4e 100644
> --- a/tools/testing/selftests/bpf/xskxceiver.h
> +++ b/tools/testing/selftests/bpf/xskxceiver.h
> @@ -78,6 +78,7 @@ enum test_type {
> TEST_TYPE_ALIGNED_INV_DESC,
> TEST_TYPE_ALIGNED_INV_DESC_2K_FRAME,
> TEST_TYPE_UNALIGNED_INV_DESC,
> + TEST_TYPE_UNALIGNED_INV_DESC_4K1_FRAME,
> TEST_TYPE_HEADROOM,
> TEST_TYPE_TEARDOWN,
> TEST_TYPE_BIDI,
> --
> 2.39.2
>
Powered by blists - more mailing lists