[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <540dd7eb-1099-4c38-8004-1cb556b0b9be@huaweicloud.com>
Date: Fri, 6 Sep 2024 11:56:39 +0800
From: Pu Lehui <pulehui@...weicloud.com>
To: Daniel Borkmann <daniel@...earbox.net>, Björn Töpel
<bjorn@...nel.org>, bpf@...r.kernel.org, linux-riscv@...ts.infradead.org,
netdev@...r.kernel.org
Cc: Andrii Nakryiko <andrii@...nel.org>, Eduard Zingerman
<eddyz87@...il.com>, Mykola Lysenko <mykolal@...com>,
Puranjay Mohan <puranjay@...nel.org>, Alexei Starovoitov <ast@...nel.org>,
Martin KaFai Lau <martin.lau@...ux.dev>, Song Liu <song@...nel.org>,
Yonghong Song <yonghong.song@...ux.dev>,
John Fastabend <john.fastabend@...il.com>, KP Singh <kpsingh@...nel.org>,
Stanislav Fomichev <sdf@...ichev.me>, Hao Luo <haoluo@...gle.com>,
Jiri Olsa <jolsa@...nel.org>, Palmer Dabbelt <palmer@...belt.com>,
Pu Lehui <pulehui@...wei.com>
Subject: Re: [PATCH bpf-next v3 00/10] Local vmtest enhancement and RV64 enabled😁
On 2024/9/6 2:52, Daniel Borkmann wrote:
> On 9/5/24 10:13 AM, Pu Lehui wrote:
>> Patch 1-3 fix some problem about bpf selftests. Patch 4 add local rootfs
>> image support for vmtest. Patch 5 enable cross-platform testing for
>> vmtest. Patch 6-10 enable vmtest on RV64.
>>
>> We can now perform cross platform testing for riscv64 bpf using the
>> following command:
>>
>> PLATFORM=riscv64 CROSS_COMPILE=riscv64-linux-gnu- \
>> tools/testing/selftests/bpf/vmtest.sh \
>> -l <path of local rootfs image> -- \
>> ./test_progs -d \
>> \"$(cat tools/testing/selftests/bpf/DENYLIST.riscv64 \
>> | cut -d'#' -f1 \
>> | sed -e 's/^[[:space:]]*//' \
>> -e 's/[[:space:]]*$//' \
>> | tr -s '\n' ',' \
>> )\"
>>
>> For better regression, we rely on commit [0]. And since the work of riscv
>> ftrace to remove stop_machine atomic replacement is in progress, we also
>> need to revert commit [1] [2].
>>
>> The test platform is x86_64 architecture, and the versions of relevant
>> components are as follows:
>> QEMU: 8.2.0
>> CLANG: 17.0.6 (align to BPF CI)
>> ROOTFS: ubuntu noble (generated by [3])
>>
>> Link:
>> https://lore.kernel.org/all/20240831071520.1630360-1-pulehui@huaweicloud.com/ [0]
>> Link:
>> https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=3308172276db [1]
>> Link:
>> https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=7caa9765465f [2]
>> Link: https://github.com/libbpf/ci/blob/main/rootfs/mkrootfs_debian.sh
>> [3]
>
> Nice work! Next step is upstream BPF CI integration? :)
CC Björn😁
Yeah, that's what we're most looking forward to and we've been trying to
move forward with that. There are currently several options, but they
are not very suitable yet.
1. Cross-platform testing with subset of tests (test_verifier +
test_progs), it will cost a bit more time.
x86_64 host:
Summary: 536/3594 PASSED, 68 SKIPPED, 0 FAILED
real 30m 18.88s
user 6m 52.97s
sys 21m 3.03s
2. Cross-platform testing will parallel mode, it will meet flaky
problems while the time consume looks good.
x86_64 host:
real 7m 45.42s
user 6m 13.59s
sys 15m 41.12s
3. Real board testing, which relies on Hypervisor Extension to enable
kvm on qemu. We are still trying to find a suitable board.
I believe we will be able to see the RV64 on the BPF CI soon.😄
>
> Fwiw, all still works for me on x86-64 (*), so:
>
> Acked-by: Daniel Borkmann <daniel@...earbox.net>
> Tested-by: Daniel Borkmann <daniel@...earbox.net>
>
> (*) fresh Equinix Ubuntu instance still requires this one for vmtest.sh,
> but
> that is independent of this series (and for others it seems not
> required)
>
> diff --git a/tools/testing/selftests/bpf/Makefile
> b/tools/testing/selftests/bpf/Makefile
> index 04716a5e43f1..02dd161e5185 100644
> --- a/tools/testing/selftests/bpf/Makefile
> +++ b/tools/testing/selftests/bpf/Makefile
> @@ -693,7 +693,7 @@ $(OUTPUT)/$(TRUNNER_BINARY):
> $(TRUNNER_TEST_OBJS) \
> $(TRUNNER_BPFTOOL) \
> | $(TRUNNER_BINARY)-extras
> $$(call msg,BINARY,,$$@)
> - $(Q)$$(CC) $$(CFLAGS) $$(filter %.a %.o,$$^) $$(LDLIBS)
> $$(LDFLAGS) -o $$@
> + $(Q)$$(CC) $$(CFLAGS) $(TRUNNER_LDFLAGS) $$(filter %.a %.o,$$^)
> $$(LDLIBS) $$(LDFLAGS) -o $$@
> $(Q)$(RESOLVE_BTFIDS) --btf $(TRUNNER_OUTPUT)/btf_data.bpf.o $$@
> $(Q)ln -sf $(if
> $2,..,.)/tools/build/bpftool/$(USE_BOOTSTRAP)bpftool \
> $(OUTPUT)/$(if $2,$2/)bpftool
> diff --git a/tools/testing/selftests/bpf/vmtest.sh
> b/tools/testing/selftests/bpf/vmtest.sh
> index 79505d294c44..afbd6b785064 100755
> --- a/tools/testing/selftests/bpf/vmtest.sh
> +++ b/tools/testing/selftests/bpf/vmtest.sh
> @@ -189,7 +189,7 @@ update_selftests()
> local
> selftests_dir="${kernel_checkout}/tools/testing/selftests/bpf"
>
> cd "${selftests_dir}"
> - ${make_command}
> + TRUNNER_LDFLAGS=-static ${make_command}
>
> # Mount the image and copy the selftests to the image.
> mount_image
Powered by blists - more mailing lists