diff options
author | Tom Zanussi <tzanussi@gmail.com> | 2010-04-02 04:59:24 (GMT) |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2010-04-14 09:56:08 (GMT) |
commit | 00b21a01935892a2b97613f10300434998f45093 (patch) | |
tree | 574181758da96e53edbc73ac9b6870cb5ee2b01c /tools/perf/scripts/perl/bin/rw-by-pid-record | |
parent | 47902f3611b392209e2a412bf7ec02dca95e666d (diff) | |
download | linux-fsl-qoriq-00b21a01935892a2b97613f10300434998f45093.tar.xz |
perf trace/scripting: Enable scripting shell scripts for live mode
It should be possible to run any perf trace script in 'live
mode'. This requires being able to pass in e.g. '-i -' or other
args, which the current shell scripts aren't equipped to handle.
In a few cases, there are required or optional args that also
need special handling. This patch makes changes the current set
of shell scripts as necessary.
Signed-off-by: Tom Zanussi <tzanussi@gmail.com>
Acked-by: Thomas Gleixner <tglx@linutronix.de>
Cc: fweisbec@gmail.com
Cc: rostedt@goodmis.org
Cc: k-keiichi@bx.jp.nec.com
Cc: acme@ghostprotocols.net
LKML-Reference: <1270184365-8281-11-git-send-email-tzanussi@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools/perf/scripts/perl/bin/rw-by-pid-record')
-rw-r--r-- | tools/perf/scripts/perl/bin/rw-by-pid-record | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/scripts/perl/bin/rw-by-pid-record b/tools/perf/scripts/perl/bin/rw-by-pid-record index 8903979..63976bf 100644 --- a/tools/perf/scripts/perl/bin/rw-by-pid-record +++ b/tools/perf/scripts/perl/bin/rw-by-pid-record @@ -1,2 +1,2 @@ #!/bin/bash -perf record -c 1 -f -a -M -R -e syscalls:sys_enter_read -e syscalls:sys_exit_read -e syscalls:sys_enter_write -e syscalls:sys_exit_write +perf record -c 1 -f -a -M -R -e syscalls:sys_enter_read -e syscalls:sys_exit_read -e syscalls:sys_enter_write -e syscalls:sys_exit_write $@ |