mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-13 01:46:52 +07:00
765532c8aa
The scripts have calls to 'perf trace' that need to be converted to 'perf script', do it.
This problem was introduced in 133dc4c
.
Reported-by: Torok Edwin <edwintorok@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Cc: Tom Zanussi <tzanussi@gmail.com>
Cc: Torok Edwin <edwintorok@gmail.com>
LKML-Reference: <new-submission>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
25 lines
484 B
Bash
25 lines
484 B
Bash
#!/bin/bash
|
|
# description: syscall top
|
|
# args: [comm] [interval]
|
|
n_args=0
|
|
for i in "$@"
|
|
do
|
|
if expr match "$i" "-" > /dev/null ; then
|
|
break
|
|
fi
|
|
n_args=$(( $n_args + 1 ))
|
|
done
|
|
if [ "$n_args" -gt 2 ] ; then
|
|
echo "usage: sctop-report [comm] [interval]"
|
|
exit
|
|
fi
|
|
if [ "$n_args" -gt 1 ] ; then
|
|
comm=$1
|
|
interval=$2
|
|
shift 2
|
|
elif [ "$n_args" -gt 0 ] ; then
|
|
interval=$1
|
|
shift
|
|
fi
|
|
perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/sctop.py $comm $interval
|