diff options
author | Pu Lehui <pulehui@huawei.com> | 2023-08-24 09:50:01 +0000 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2023-08-24 09:13:08 -0700 |
commit | 0209fd511fa4371f49d6e38f25a258831bb90391 (patch) | |
tree | f9b9c3edfb2ca0d2b40f42f8e3fbcfe5b04dec42 /tools/testing/selftests/bpf/progs/verifier_gotol.c | |
parent | 83cc63afab718c5a31ce94d3e7f3827acc501042 (diff) |
selftests/bpf: Enable cpu v4 tests for RV64
Enable cpu v4 tests for RV64, and the relevant tests have passed.
Signed-off-by: Pu Lehui <pulehui@huawei.com>
Acked-by: Yonghong Song <yonghong.song@linux.dev>
Acked-by: Björn Töpel <bjorn@kernel.org>
Link: https://lore.kernel.org/r/20230824095001.3408573-8-pulehui@huaweicloud.com
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'tools/testing/selftests/bpf/progs/verifier_gotol.c')
-rw-r--r-- | tools/testing/selftests/bpf/progs/verifier_gotol.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/testing/selftests/bpf/progs/verifier_gotol.c b/tools/testing/selftests/bpf/progs/verifier_gotol.c index 17319a505e87..2dae5322a18e 100644 --- a/tools/testing/selftests/bpf/progs/verifier_gotol.c +++ b/tools/testing/selftests/bpf/progs/verifier_gotol.c @@ -4,7 +4,8 @@ #include <bpf/bpf_helpers.h> #include "bpf_misc.h" -#if (defined(__TARGET_ARCH_arm64) || defined(__TARGET_ARCH_x86)) && __clang_major__ >= 18 +#if (defined(__TARGET_ARCH_arm64) || defined(__TARGET_ARCH_x86) || \ + (defined(__TARGET_ARCH_riscv) && __riscv_xlen == 64)) && __clang_major__ >= 18 SEC("socket") __description("gotol, small_imm") |