Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

perf arch x86: Address shellcheck warnings about unused variables in syscalltbl.sh

Running shellcheck on syscalltbl.sh generates below warning:

In ./tools/perf/arch/x86/entry/syscalls/syscalltbl.sh line 27:
while read nr abi name entry compat; do
^-^ SC2034 (warning): abi appears unused. Verify use (or export if used externally).
^----^ SC2034 (warning): compat appears unused. Verify use (or export if used externally).

These variables are intentionally unused since they are needed to parse
through the output. Use "_" as a prefix for these throw away variables.

Signed-off-by: Athira Rajeev <atrajeev@linux.vnet.ibm.com>
Acked-by: Ian Rogers <irogers@google.com>
Cc: Disha Goel <disgoel@linux.vnet.ibm.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Kajol Jain <kjain@linux.ibm.com>
Cc: Madhavan Srinivasan <maddy@linux.ibm.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: linuxppc-dev@lists.ozlabs.org
Link: https://lore.kernel.org/r/20230709182800.53002-22-atrajeev@linux.vnet.ibm.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>

authored by

Athira Rajeev and committed by
Arnaldo Carvalho de Melo
84caba70 5e9310ae

+1 -1
+1 -1
tools/perf/arch/x86/entry/syscalls/syscalltbl.sh
··· 24 24 grep '^[0-9]' "$in" | sort -n > $sorted_table 25 25 26 26 max_nr=0 27 - while read nr abi name entry compat; do 27 + while read nr _abi name entry _compat; do 28 28 if [ $nr -ge 512 ] ; then # discard compat sycalls 29 29 break 30 30 fi