mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

RISC-V does not currently support perf trace, since the system call table is not generated. Perform the copy/paste exercise, wiring up RISC-V system call table generation. Signed-off-by: Björn Töpel <bjorn@rivosinc.com> Tested-by: Alexandre Ghiti <alexghiti@rivosinc.com> Cc: Anup Patel <anup@brainfault.org> Cc: Palmer Dabbelt <palmer@dabbelt.com> Cc: Albert Ou <aou@eecs.berkeley.edu> Cc: linux-riscv@lists.infradead.org Cc: Atish Patra <atishp@rivosinc.com> Cc: Paul Walmsley <paul.walmsley@sifive.com> Link: https://lore.kernel.org/r/20241024190353.46737-1-bjorn@kernel.org Signed-off-by: Namhyung Kim <namhyung@kernel.org>
47 lines
960 B
Bash
Executable file
47 lines
960 B
Bash
Executable file
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Generate system call table for perf. Derived from
|
|
# powerpc script.
|
|
#
|
|
# Copyright IBM Corp. 2017
|
|
# Author(s): Hendrik Brueckner <brueckner@linux.vnet.ibm.com>
|
|
# Changed by: Ravi Bangoria <ravi.bangoria@linux.vnet.ibm.com>
|
|
# Changed by: Kim Phillips <kim.phillips@arm.com>
|
|
# Changed by: Björn Töpel <bjorn@rivosinc.com>
|
|
|
|
gcc=$1
|
|
hostcc=$2
|
|
incpath=$3
|
|
input=$4
|
|
|
|
if ! test -r $input; then
|
|
echo "Could not read input file" >&2
|
|
exit 1
|
|
fi
|
|
|
|
create_sc_table()
|
|
{
|
|
local sc nr max_nr
|
|
|
|
while read sc nr; do
|
|
printf "%s\n" " [$nr] = \"$sc\","
|
|
max_nr=$nr
|
|
done
|
|
|
|
echo "#define SYSCALLTBL_RISCV_MAX_ID $max_nr"
|
|
}
|
|
|
|
create_table()
|
|
{
|
|
echo "#include \"$input\""
|
|
echo "static const char *const syscalltbl_riscv[] = {"
|
|
create_sc_table
|
|
echo "};"
|
|
}
|
|
|
|
$gcc -E -dM -x c -I $incpath/include/uapi $input \
|
|
|awk '$2 ~ "__NR" && $3 !~ "__NR3264_" {
|
|
sub("^#define __NR(3264)?_", "");
|
|
print | "sort -k2 -n"}' \
|
|
|create_table
|