xref: /linux/tools/perf/scripts/python/bin/failed-syscalls-by-pid-report (revision a4ab0c12975d1286b2696370f5e0576450609bf0)
14d161f03STom Zanussi#!/bin/bash
24d161f03STom Zanussi# description: system-wide failed syscalls, by pid
34d161f03STom Zanussi# args: [comm]
400b21a01STom Zanussiif [ $# -gt 0 ] ; then
5*a4ab0c12STom Zanussi    if ! expr match "$1" "-" > /dev/null ; then
600b21a01STom Zanussi	comm=$1
700b21a01STom Zanussi	shift
800b21a01STom Zanussi    fi
900b21a01STom Zanussifi
1000b21a01STom Zanussiperf trace $@ -s ~/libexec/perf-core/scripts/python/failed-syscalls-by-pid.py $comm
11