mirror of
https://github.com/torvalds/linux.git
synced 2026-06-04 04:23:35 +02:00
selftests/bpf: Define SYS_PREFIX for powerpc
Since commit7e92e01b72("powerpc: Provide syscall wrapper") landed in v6.1, syscall wrapper is enabled on powerpc. Commit9474689020("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> Signed-off-by: Andrii Nakryiko <andrii@kernel.org> Acked-by: Yonghong Song <yonghong.song@linux.dev> Link: https://lore.kernel.org/bpf/7192d6aa9501115dc242435970df82b3d190f257.1738302337.git.skb99@linux.ibm.com
This commit is contained in:
parent
17c3dc5029
commit
650f20bbd9
|
|
@ -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_"
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user