~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise-security

« back to all changes in this revision

Viewing changes to tools/perf/Documentation/perf-script.txt

  • Committer: Package Import Robot
  • Author(s): Paolo Pisati, Paolo Pisati
  • Date: 2011-12-06 15:56:07 UTC
  • Revision ID: package-import@ubuntu.com-20111206155607-pcf44kv5fmhk564f
Tags: 3.2.0-1401.1
[ Paolo Pisati ]

* Rebased on top of Ubuntu-3.2.0-3.8
* Tilt-tracking @ ef2487af4bb15bdd0689631774b5a5e3a59f74e2
* Delete debian.ti-omap4/control, it shoudln't be tracked
* Fix architecture spelling (s/armel/armhf/)
* [Config] Update configs following 3.2 import
* [Config] Fix compilation: disable CODA and ARCH_OMAP3
* [Config] Fix compilation: disable Ethernet Faraday
* Update series to precise

Show diffs side-by-side

added added

removed removed

Lines of Context:
115
115
-f::
116
116
--fields::
117
117
        Comma separated list of fields to print. Options are:
118
 
        comm, tid, pid, time, cpu, event, trace, sym. Field
119
 
        list can be prepended with the type, trace, sw or hw,
 
118
        comm, tid, pid, time, cpu, event, trace, ip, sym, dso, addr.
 
119
        Field list can be prepended with the type, trace, sw or hw,
120
120
        to indicate to which event type the field list applies.
121
 
        e.g., -f sw:comm,tid,time,sym  and -f trace:time,cpu,trace
 
121
        e.g., -f sw:comm,tid,time,ip,sym  and -f trace:time,cpu,trace
122
122
 
123
123
                perf script -f <fields>
124
124
 
132
132
        The arguments are processed in the order received. A later usage can
133
133
        reset a prior request. e.g.:
134
134
    
135
 
                -f trace: -f comm,tid,time,sym
 
135
                -f trace: -f comm,tid,time,ip,sym
136
136
    
137
137
        The first -f suppresses trace events (field list is ""), but then the
138
 
        second invocation sets the fields to comm,tid,time,sym. In this case a
 
138
        second invocation sets the fields to comm,tid,time,ip,sym. In this case a
139
139
        warning is given to the user:
140
140
    
141
141
                "Overriding previous field request for all events."
142
142
    
143
143
        Alternativey, consider the order:
144
144
    
145
 
                -f comm,tid,time,sym -f trace:
 
145
                -f comm,tid,time,ip,sym -f trace:
146
146
    
147
147
        The first -f sets the fields for all events and the second -f
148
148
        suppresses trace events. The user is given a warning message about
182
182
--hide-call-graph::
183
183
        When printing symbols do not display call chain.
184
184
 
 
185
-c::
 
186
--cpu:: Only report samples for the list of CPUs provided. Multiple CPUs can
 
187
        be provided as a comma-separated list with no space: 0,1. Ranges of
 
188
        CPUs are specified with -: 0-2. Default is to report samples on all
 
189
        CPUs.
 
190
 
 
191
-I::
 
192
--show-info::
 
193
        Display extended information about the perf.data file. This adds
 
194
        information which may be very large and thus may clutter the display.
 
195
        It currently includes: cpu and numa topology of the host system.
 
196
        It can only be used with the perf script report mode.
 
197
 
185
198
SEE ALSO
186
199
--------
187
200
linkperf:perf-record[1], linkperf:perf-script-perl[1],