Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

selftests/bpf: Enable test for instruction array on arm64

As arm64 JIT now supports instruction array, make sure
all relevant tests run on this architecture.

Summary: 1/9 PASSED, 0 SKIPPED, 0 FAILED

Signed-off-by: Abhishek Dubey <adubey@linux.ibm.com>
Acked-by: Anton Protopopov <a.s.protopopov@gmail.com>
Link: https://lore.kernel.org/r/20260223203511.118475-1-adubey@linux.ibm.com
Signed-off-by: Alexei Starovoitov <ast@kernel.org>

authored by

Abhishek Dubey and committed by
Alexei Starovoitov
99726ece 0d6bc03d

+1 -1
+1 -1
tools/testing/selftests/bpf/prog_tests/bpf_insn_array.c
··· 3 3 #include <bpf/bpf.h> 4 4 #include <test_progs.h> 5 5 6 - #ifdef __x86_64__ 6 + #if defined(__x86_64__) || defined(__aarch64__) 7 7 static int map_create(__u32 map_type, __u32 max_entries) 8 8 { 9 9 const char *map_name = "insn_array";