Prev: [PATCH 5/9] perf/trace/scripting: workqueue-stats script cleanup
Next: linux-next: build failure after merge of the tip tree
From: Tom Zanussi on 10 May 2010 00:50 A small fixe for the failed syscalls by pid script: - silence the match output in the shell script Signed-off-by: Tom Zanussi <tzanussi(a)gmail.com> --- .../python/bin/failed-syscalls-by-pid-report | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tools/perf/scripts/python/bin/failed-syscalls-by-pid-report b/tools/perf/scripts/python/bin/failed-syscalls-by-pid-report index 8c128ef..3029354 100644 --- a/tools/perf/scripts/python/bin/failed-syscalls-by-pid-report +++ b/tools/perf/scripts/python/bin/failed-syscalls-by-pid-report @@ -2,7 +2,7 @@ # description: system-wide failed syscalls, by pid # args: [comm] if [ $# -gt 0 ] ; then - if ! expr match "$1" "-" ; then + if ! expr match "$1" "-" > /dev/null ; then comm=$1 shift fi -- 1.6.4.GIT -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |