Latest Manual Page of perf-lock.1

From Perf Wiki
(Difference between revisions)
Jump to: navigation, search
Line 36: Line 36:
 
-q, --quiet
 
-q, --quiet
  
<blockquote>Do not show any message. (Suppress -v)
+
<blockquote>Do not show any warnings or messages. (Suppress -v)
 
</blockquote>
 
</blockquote>
 
-D, --dump-raw-trace
 
-D, --dump-raw-trace
Line 131: Line 131:
  
 
-C::
 
-C::
--cpu::
+
--cpu=&lt;value&gt;::
 
         Collect samples only on the list of CPUs provided. Multiple CPUs can be
 
         Collect samples only on the list of CPUs provided. Multiple CPUs can be
 
         provided as a comma-separated list with no space: 0,1. Ranges of CPUs
 
         provided as a comma-separated list with no space: 0,1. Ranges of CPUs
Line 137: Line 137:
  
 
-p::
 
-p::
--pid=::
+
--pid=&lt;value&gt;::
 
         Record events on existing process ID (comma separated list).
 
         Record events on existing process ID (comma separated list).
  
--tid=::
+
--tid=&lt;value&gt;::
 
         Record events on existing thread ID (comma separated list).
 
         Record events on existing thread ID (comma separated list).
  
--map-nr-entries::
+
--map-nr-entries=&lt;value&gt;::
 
         Maximum number of BPF map entries (default: 10240).
 
         Maximum number of BPF map entries (default: 10240).
  
--max-stack::
+
--max-stack=&lt;value&gt;::
 
         Maximum stack depth when collecting lock contention (default: 8).
 
         Maximum stack depth when collecting lock contention (default: 8).
  
--stack-skip
+
--stack-skip=&lt;value&gt;::
 
         Number of stack depth to skip when finding a lock caller (default: 3).
 
         Number of stack depth to skip when finding a lock caller (default: 3).
  
Line 155: Line 155:
 
--entries=&lt;value&gt;::
 
--entries=&lt;value&gt;::
 
         Display this many entries.
 
         Display this many entries.
 +
 +
-l::
 +
--lock-addr::
 +
        Show lock contention stat by address
 +
 +
-Y::
 +
--type-filter=&lt;value&gt;::
 +
        Show lock contention only for given lock types (comma separated list).
 +
        Available values are:
 +
          semaphore, spinlock, rwlock, rwlock:R, rwlock:W, rwsem, rwsem:R, rwsem:W,
 +
          rtmutex, rwlock-rt, rwlock-rt:R, rwlock-rt:W, pcpu-sem, pcpu-sem:R, pcpu-sem:W,
 +
          mutex
 +
 +
        Note that RW-variant of locks have :R and :W suffix.  Names without the
 +
        suffix are shortcuts for the both variants.  Ex) rwsem = rwsem:R + rwsem:W.
 +
 +
-L::
 +
--lock-filter=&lt;value&gt;::
 +
        Show lock contention only for given lock addresses or names (comma separated list).
  
  
Line 165: Line 184:
 
= KERNEL VERSION =
 
= KERNEL VERSION =
  
This page is auto-generated.  The kernel version is v6.1
+
This page is auto-generated.  The kernel version is v6.2

Revision as of 12:27, 28 February 2023

Contents

NAME

perf-lock - Analyze lock events

SYNOPSIS

perf lock {record|report|script|info|contention}

DESCRIPTION

You can analyze various lock behaviours and statistics with this perf lock command.

perf lock record <command> records lock events
between start and end <command>. And this command
produces the file "perf.data" which contains tracing
results of lock events.

perf lock report reports statistical data.

perf lock script shows raw lock events.

perf lock info shows metadata like threads or addresses
of lock instances.

perf lock contention shows contention statistics.

COMMON OPTIONS

-i, --input=<file>

Input file name. (default: perf.data unless stdin is a fifo)

-v, --verbose

Be more verbose (show symbol address, etc).

-q, --quiet

Do not show any warnings or messages. (Suppress -v)

-D, --dump-raw-trace

Dump raw trace in ASCII.

-f, --force

Don’t complain, do it.

--vmlinux=<file>

vmlinux pathname

--kallsyms=<file>

kallsyms pathname

REPORT OPTIONS

-k, --key=<value>

Sorting key. Possible values: acquired (default), contended, avg_wait, wait_total, wait_max, wait_min.

-F, --field=<value>

Output fields. By default it shows all the fields but users can customize that using this. Possible values: acquired, contended, avg_wait, wait_total, wait_max, wait_min.

-c, --combine-locks

Merge lock instances in the same class (based on name).

-t, --threads

The -t option is to show per-thread lock stat like below:
$ perf lock report -t -F acquired,contended,avg_wait

Name   acquired  contended   avg wait (ns)

           perf     240569          9            5784
        swapper     106610         19             543
         :15789      17370          2           14538
   ContainerMgr       8981          6             874
          sleep       5275          1           11281
ContainerThread       4416          4             944
RootPressureThr       3215          5            1215
    rcu_preempt       2954          0               0
   ContainerMgr       2560          0               0
        unnamed       1873          0               0
EventManager_De       1845          1             636
futex-default-S       1609          0               0

-E, --entries=<value>

Display this many entries.

INFO OPTIONS

-t, --threads

dump thread list in perf.data

-m, --map

dump map of lock instances (address:name table)

CONTENTION OPTIONS

.ft C
-k::
--key=<value>::
        Sorting key. Possible values: contended, wait_total (default),
        wait_max, wait_min, avg_wait.

-F::
--field=<value>::
        Output fields. By default it shows all but the wait_min fields
        and users can customize that using this.  Possible values:
        contended, wait_total, wait_max, wait_min, avg_wait.

-t::
--threads::
        Show per-thread lock contention stat

-b::
--use-bpf::
        Use BPF program to collect lock contention stats instead of
        using the input data.

-a::
--all-cpus::
        System-wide collection from all CPUs.

-C::
--cpu=<value>::
        Collect samples only on the list of CPUs provided. Multiple CPUs can be
        provided as a comma-separated list with no space: 0,1. Ranges of CPUs
        are specified with -: 0-2.  Default is to monitor all CPUs.

-p::
--pid=<value>::
        Record events on existing process ID (comma separated list).

--tid=<value>::
        Record events on existing thread ID (comma separated list).

--map-nr-entries=<value>::
        Maximum number of BPF map entries (default: 10240).

--max-stack=<value>::
        Maximum stack depth when collecting lock contention (default: 8).

--stack-skip=<value>::
        Number of stack depth to skip when finding a lock caller (default: 3).

-E::
--entries=<value>::
        Display this many entries.

-l::
--lock-addr::
        Show lock contention stat by address

-Y::
--type-filter=<value>::
        Show lock contention only for given lock types (comma separated list).
        Available values are:
          semaphore, spinlock, rwlock, rwlock:R, rwlock:W, rwsem, rwsem:R, rwsem:W,
          rtmutex, rwlock-rt, rwlock-rt:R, rwlock-rt:W, pcpu-sem, pcpu-sem:R, pcpu-sem:W,
          mutex

        Note that RW-variant of locks have :R and :W suffix.  Names without the
        suffix are shortcuts for the both variants.  Ex) rwsem = rwsem:R + rwsem:W.

-L::
--lock-filter=<value>::
        Show lock contention only for given lock addresses or names (comma separated list).


SEE ALSO
.ft

perf(1)


KERNEL VERSION

This page is auto-generated. The kernel version is v6.2

Personal tools