public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] selftests/bpf: Define SYS_PREFIX for powerpc
@ 2025-01-25 15:24 Saket Kumar Bhaskar
  2025-01-25 15:24 ` [PATCH 2/2] selftests/bpf: Select NUMA node of current CPU to create map Saket Kumar Bhaskar
  0 siblings, 1 reply; 4+ messages in thread
From: Saket Kumar Bhaskar @ 2025-01-25 15:24 UTC (permalink / raw)
  To: bpf, linux-kselftest, linux-kernel
  Cc: ast, hbathini, andrii, daniel, davem, kuba, hawk, martin.lau,
	eddyz87, song, yonghong.song, john.fastabend, kpsingh, sdf,
	haoluo, jolsa, mykolal, shuah

Since commit 7e92e01b7245 ("powerpc: Provide syscall wrapper") 
landed in v6.1, syscall wrapper is enabled on powerpc. Commit 
94746890202c ("powerpc: Don't add __powerpc_ prefix to syscall 
entry points"), that drops the prefix to syscall entry points, 
also landed in the same release. So, add the missing empty 
SYS_PREFIX prefix definition for powerpc, to fix some fentry 
and kprobe selftests.

Signed-off-by: Saket Kumar Bhaskar <skb99@linux.ibm.com>
---
 tools/testing/selftests/bpf/progs/bpf_misc.h | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/tools/testing/selftests/bpf/progs/bpf_misc.h b/tools/testing/selftests/bpf/progs/bpf_misc.h
index f45f4352f..02c9f7964 100644
--- a/tools/testing/selftests/bpf/progs/bpf_misc.h
+++ b/tools/testing/selftests/bpf/progs/bpf_misc.h
@@ -172,6 +172,9 @@
 #elif defined(__TARGET_ARCH_riscv)
 #define SYSCALL_WRAPPER 1
 #define SYS_PREFIX "__riscv_"
+#elif defined(__TARGET_ARCH_powerpc)
+#define SYSCALL_WRAPPER 1
+#define SYS_PREFIX ""
 #else
 #define SYSCALL_WRAPPER 0
 #define SYS_PREFIX "__se_"
-- 
2.43.5


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2025-01-27 12:02 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-25 15:24 [PATCH 1/2] selftests/bpf: Define SYS_PREFIX for powerpc Saket Kumar Bhaskar
2025-01-25 15:24 ` [PATCH 2/2] selftests/bpf: Select NUMA node of current CPU to create map Saket Kumar Bhaskar
2025-01-25 17:02   ` Alexei Starovoitov
2025-01-27 12:01     ` Saket Kumar Bhaskar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox