diff options
author | Tom Zanussi <[email protected]> | 2010-05-09 23:46:59 -0500 |
---|---|---|
committer | Arnaldo Carvalho de Melo <[email protected]> | 2010-05-10 19:51:01 -0300 |
commit | 79e653f1bf2e52d12a952366e782dadf590b9d1d (patch) | |
tree | 06d1f75ff2e74b93f809269a827d83b0ff93d1cf | |
parent | a4ab0c12975d1286b2696370f5e0576450609bf0 (diff) |
perf/trace/scripting: syscall-counts-by-pid script cleanup
A small fix for the syscall counts by pid script:
- silence the match output in the shell script
Cc: Frédéric Weisbecker <[email protected]>
Cc: Ingo Molnar <[email protected]>
LKML-Reference: <[email protected]>
Signed-off-by: Tom Zanussi <[email protected]>
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
-rw-r--r-- | tools/perf/scripts/python/bin/syscall-counts-by-pid-report | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/scripts/python/bin/syscall-counts-by-pid-report b/tools/perf/scripts/python/bin/syscall-counts-by-pid-report index c53362e48602..9e9d8ddd72ce 100644 --- a/tools/perf/scripts/python/bin/syscall-counts-by-pid-report +++ b/tools/perf/scripts/python/bin/syscall-counts-by-pid-report @@ -2,7 +2,7 @@ # description: system-wide syscall counts, by pid # args: [comm] if [ $# -gt 0 ] ; then - if ! expr match "$1" "-" ; then + if ! expr match "$1" "-" > /dev/null ; then comm=$1 shift fi |