From 66cad93ad325b332868c062bbd0de65ca4e59657 Mon Sep 17 00:00:00 2001 From: Abhishek Dubey Date: Wed, 1 Apr 2026 11:21:31 -0400 Subject: [PATCH] selftest/bpf: Enable instruction array test for powerpc With instruction array now supported, enable corresponding bpf selftest for powerpc. Signed-off-by: Abhishek Dubey Tested-by: Venkat Rao Bagalkote Acked-by: Hari Bathini Signed-off-by: Madhavan Srinivasan Link: https://patch.msgid.link/20260401152133.42544-3-adubey@linux.ibm.com --- tools/testing/selftests/bpf/prog_tests/bpf_insn_array.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/testing/selftests/bpf/prog_tests/bpf_insn_array.c b/tools/testing/selftests/bpf/prog_tests/bpf_insn_array.c index 269870bec941..482d38b9c29e 100644 --- a/tools/testing/selftests/bpf/prog_tests/bpf_insn_array.c +++ b/tools/testing/selftests/bpf/prog_tests/bpf_insn_array.c @@ -3,7 +3,7 @@ #include #include -#ifdef __x86_64__ +#if defined(__x86_64__) || defined(__powerpc__) static int map_create(__u32 map_type, __u32 max_entries) { const char *map_name = "insn_array";