diff options
author | Masami Hiramatsu <mhiramat@redhat.com> | 2010-02-25 08:35:19 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2010-02-25 11:49:27 -0500 |
commit | ee391de876ae4272926b8632be04ed4a460321e3 (patch) | |
tree | a783995197f83cb1c5c8325b6a311a3aede82fbf /tools | |
parent | f3ab481ca6ffe5e272c8501317bea726f9a83959 (diff) |
perf probe: Update perf probe document
Update perf-probe.txt to suit to current perf-probe command
and add some examples.
Signed-off-by: Masami Hiramatsu <mhiramat@redhat.com>
Cc: systemtap <systemtap@sources.redhat.com>
Cc: DLE <dle-develop@lists.sourceforge.net>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Mike Galbraith <efault@gmx.de>
Cc: K.Prasad <prasad@linux.vnet.ibm.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
LKML-Reference: <20100225133519.6725.58816.stgit@localhost6.localdomain6>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/perf/Documentation/perf-probe.txt | 28 |
1 files changed, 26 insertions, 2 deletions
diff --git a/tools/perf/Documentation/perf-probe.txt b/tools/perf/Documentation/perf-probe.txt index 2de34075f6a4..5fe63c0ca80c 100644 --- a/tools/perf/Documentation/perf-probe.txt +++ b/tools/perf/Documentation/perf-probe.txt | |||
@@ -41,7 +41,8 @@ OPTIONS | |||
41 | 41 | ||
42 | -d:: | 42 | -d:: |
43 | --del=:: | 43 | --del=:: |
44 | Delete a probe event. | 44 | Delete probe events. This accepts glob wildcards('*', '?') and character |
45 | classes(e.g. [a-z], [!A-Z]). | ||
45 | 46 | ||
46 | -l:: | 47 | -l:: |
47 | --list:: | 48 | --list:: |
@@ -50,7 +51,11 @@ OPTIONS | |||
50 | -L:: | 51 | -L:: |
51 | --line=:: | 52 | --line=:: |
52 | Show source code lines which can be probed. This needs an argument | 53 | Show source code lines which can be probed. This needs an argument |
53 | which specifies a range of the source code. | 54 | which specifies a range of the source code. (see LINE SYNTAX for detail) |
55 | |||
56 | -f:: | ||
57 | --force:: | ||
58 | Forcibly add events with existing name. | ||
54 | 59 | ||
55 | PROBE SYNTAX | 60 | PROBE SYNTAX |
56 | ------------ | 61 | ------------ |
@@ -76,6 +81,25 @@ and 'ALN2' is end line number in the file. It is also possible to specify how | |||
76 | many lines to show by using 'NUM'. | 81 | many lines to show by using 'NUM'. |
77 | So, "source.c:100-120" shows lines between 100th to l20th in source.c file. And "func:10+20" shows 20 lines from 10th line of func function. | 82 | So, "source.c:100-120" shows lines between 100th to l20th in source.c file. And "func:10+20" shows 20 lines from 10th line of func function. |
78 | 83 | ||
84 | EXAMPLES | ||
85 | -------- | ||
86 | Display which lines in schedule() can be probed: | ||
87 | |||
88 | ./perf probe --line schedule | ||
89 | |||
90 | Add a probe on schedule() function 12th line with recording cpu local variable: | ||
91 | |||
92 | ./perf probe schedule:12 cpu | ||
93 | or | ||
94 | ./perf probe --add='schedule:12 cpu' | ||
95 | |||
96 | this will add one or more probes which has the name start with "schedule". | ||
97 | |||
98 | Delete all probes on schedule(). | ||
99 | |||
100 | ./perf probe --del='schedule*' | ||
101 | |||
102 | |||
79 | SEE ALSO | 103 | SEE ALSO |
80 | -------- | 104 | -------- |
81 | linkperf:perf-trace[1], linkperf:perf-record[1] | 105 | linkperf:perf-trace[1], linkperf:perf-record[1] |