Re: [PATCH FOR-NEXT] perf tools: mips: Fix mips syscall generation
From: Arnaldo Carvalho de Melo
Date: Mon Jan 13 2025 - 09:52:04 EST
On Fri, Jan 10, 2025 at 11:22:51AM -0800, Charlie Jenkins wrote:
> The mips syscall generation was still based on the old method. Delete
> the Makefile since it is no longer needed with the new method of
> generation.
Thanks, applied.
- Arnaldo
> Signed-off-by: Charlie Jenkins <charlie@xxxxxxxxxxxx>
> Fixes: 619ffe669496 ("perf tools mips: Use generic syscall scripts")
> ---
> tools/perf/arch/mips/Makefile | 18 ------------------
> 1 file changed, 18 deletions(-)
>
> diff --git a/tools/perf/arch/mips/Makefile b/tools/perf/arch/mips/Makefile
> deleted file mode 100644
> index 827168f1077a670d558878e4de2694ce2083d046..0000000000000000000000000000000000000000
> --- a/tools/perf/arch/mips/Makefile
> +++ /dev/null
> @@ -1,18 +0,0 @@
> -# SPDX-License-Identifier: GPL-2.0
> -# Syscall table generation for perf
> -out := $(OUTPUT)arch/mips/include/generated/asm
> -header := $(out)/syscalls_n64.c
> -sysprf := $(srctree)/tools/perf/arch/mips/entry/syscalls
> -sysdef := $(sysprf)/syscall_n64.tbl
> -systbl := $(sysprf)/mksyscalltbl
> -
> -# Create output directory if not already present
> -$(shell [ -d '$(out)' ] || mkdir -p '$(out)')
> -
> -$(header): $(sysdef) $(systbl)
> - $(Q)$(SHELL) '$(systbl)' $(sysdef) > $@
> -
> -clean::
> - $(call QUIET_CLEAN, mips) $(RM) $(header)
> -
> -archheaders: $(header)
>
> ---
> base-commit: 01d08f525d260b547fd6dcf9fc8405219331bc34
> change-id: 20250110-perf_fix_mips-a72aa8326a10
> --
> - Charlie