[PATCH FOR-NEXT] tools perf: powerpc: Remove spu abi
From: Charlie Jenkins
Date: Thu Jan 09 2025 - 18:55:47 EST
The spu syscalls conflict with the syscalls from 32-bit and 64-bit
powerpc. Don't expose the spu syscalls through perf to avoid this
conflict.
Fixes: 7eca67cf3dab ("perf tools powerpc: Use generic syscall table scripts")
Signed-off-by: Charlie Jenkins <charlie@xxxxxxxxxxxx>
---
Since this is a for-next failure, it would be ideal if this could be
squashed onto 7eca67cf3dab ("perf tools powerpc: Use generic syscall
table scripts").
---
tools/perf/arch/powerpc/entry/syscalls/Makefile.syscalls | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tools/perf/arch/powerpc/entry/syscalls/Makefile.syscalls b/tools/perf/arch/powerpc/entry/syscalls/Makefile.syscalls
index f7e87a61401c14a1d3a8a04fe2c8ecc8bedcc1b0..e35afbc57c796cbe5bc765852daac5b3f5bf8433 100644
--- a/tools/perf/arch/powerpc/entry/syscalls/Makefile.syscalls
+++ b/tools/perf/arch/powerpc/entry/syscalls/Makefile.syscalls
@@ -1,6 +1,6 @@
# SPDX-License-Identifier: GPL-2.0
-syscall_abis_32 += spu nospu
-syscall_abis_64 += spu nospu
+syscall_abis_32 += nospu
+syscall_abis_64 += nospu
syscalltbl = $(srctree)/tools/perf/arch/powerpc/entry/syscalls/syscall.tbl
---
base-commit: cea42d1a85628348fb6081c2856a0ea73cb48f3d
change-id: 20250109-perf_powerpc_spu-934dbe13f028
--
- Charlie