mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-01 10:33:27 +00:00
perf probe: Update perf-probe document
Add --list and --del option descriptions to perf-probe.txt. Signed-off-by: Masami Hiramatsu <mhiramat@redhat.com> Cc: Steven Rostedt <rostedt@goodmis.org> Cc: Jim Keniston <jkenisto@us.ibm.com> Cc: Ananth N Mavinakayanahalli <ananth@in.ibm.com> Cc: Christoph Hellwig <hch@infradead.org> Cc: Frank Ch. Eigler <fche@redhat.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Jason Baron <jbaron@redhat.com> Cc: K.Prasad <prasad@linux.vnet.ibm.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Srikar Dronamraju <srikar@linux.vnet.ibm.com> Cc: Arnaldo Carvalho de Melo <acme@redhat.com> Cc: systemtap <systemtap@sources.redhat.com> Cc: DLE <dle-develop@lists.sourceforge.net> Cc: Frederic Weisbecker <fweisbec@gmail.com> LKML-Reference: <20091208220330.10142.73296.stgit@dhcp-100-2-132.bos.redhat.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
fa28244d12
commit
c937fe20cb
1 changed files with 16 additions and 5 deletions
|
@ -8,10 +8,13 @@ perf-probe - Define new dynamic tracepoints
|
|||
SYNOPSIS
|
||||
--------
|
||||
[verse]
|
||||
'perf probe' [options] --add 'PROBE' [--add 'PROBE' ...]
|
||||
'perf probe' [options] --add='PROBE' [...]
|
||||
or
|
||||
'perf probe' [options] 'PROBE' ['PROBE' ...]
|
||||
|
||||
'perf probe' [options] PROBE
|
||||
or
|
||||
'perf probe' [options] --del='[GROUP:]EVENT' [...]
|
||||
or
|
||||
'perf probe' --list
|
||||
|
||||
DESCRIPTION
|
||||
-----------
|
||||
|
@ -31,8 +34,16 @@ OPTIONS
|
|||
Be more verbose (show parsed arguments, etc).
|
||||
|
||||
-a::
|
||||
--add::
|
||||
Define a probe point (see PROBE SYNTAX for detail)
|
||||
--add=::
|
||||
Define a probe event (see PROBE SYNTAX for detail).
|
||||
|
||||
-d::
|
||||
--del=::
|
||||
Delete a probe event.
|
||||
|
||||
-l::
|
||||
--list::
|
||||
List up current probe events.
|
||||
|
||||
PROBE SYNTAX
|
||||
------------
|
||||
|
|
Loading…
Reference in a new issue