mirror of https://gitee.com/openkylin/linux.git
perf report: Update documentation of --sort option
The description of the memory sort key (used by --mem-mode) was misplaced. Move it under the --sort option so that it can be referenced properly. Signed-off-by: Namhyung Kim <namhyung@kernel.org> Cc: Andi Kleen <andi@firstfloor.org> Cc: David Ahern <dsahern@gmail.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Stephane Eranian <eranian@google.com> Cc: Wang Nan <wangnan0@huawei.com> Link: http://lkml.kernel.org/r/1454508683-5735-1-git-send-email-namhyung@kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
parent
aa6f50af82
commit
c6f5f6b662
|
@ -117,6 +117,22 @@ OPTIONS
|
||||||
And default sort keys are changed to comm, dso_from, symbol_from, dso_to
|
And default sort keys are changed to comm, dso_from, symbol_from, dso_to
|
||||||
and symbol_to, see '--branch-stack'.
|
and symbol_to, see '--branch-stack'.
|
||||||
|
|
||||||
|
If the --mem-mode option is used, the following sort keys are also available
|
||||||
|
(incompatible with --branch-stack):
|
||||||
|
symbol_daddr, dso_daddr, locked, tlb, mem, snoop, dcacheline.
|
||||||
|
|
||||||
|
- symbol_daddr: name of data symbol being executed on at the time of sample
|
||||||
|
- dso_daddr: name of library or module containing the data being executed
|
||||||
|
on at the time of the sample
|
||||||
|
- locked: whether the bus was locked at the time of the sample
|
||||||
|
- tlb: type of tlb access for the data at the time of the sample
|
||||||
|
- mem: type of memory access for the data at the time of the sample
|
||||||
|
- snoop: type of snoop (if any) for the data at the time of the sample
|
||||||
|
- dcacheline: the cacheline the data address is on at the time of the sample
|
||||||
|
|
||||||
|
And the default sort keys are changed to local_weight, mem, sym, dso,
|
||||||
|
symbol_daddr, dso_daddr, snoop, tlb, locked, see '--mem-mode'.
|
||||||
|
|
||||||
If the data file has tracepoint event(s), following (dynamic) sort keys
|
If the data file has tracepoint event(s), following (dynamic) sort keys
|
||||||
are also available:
|
are also available:
|
||||||
trace, trace_fields, [<event>.]<field>[/raw]
|
trace, trace_fields, [<event>.]<field>[/raw]
|
||||||
|
@ -151,22 +167,6 @@ OPTIONS
|
||||||
By default, every sort keys not specified in -F will be appended
|
By default, every sort keys not specified in -F will be appended
|
||||||
automatically.
|
automatically.
|
||||||
|
|
||||||
If --mem-mode option is used, following sort keys are also available
|
|
||||||
(incompatible with --branch-stack):
|
|
||||||
symbol_daddr, dso_daddr, locked, tlb, mem, snoop, dcacheline.
|
|
||||||
|
|
||||||
- symbol_daddr: name of data symbol being executed on at the time of sample
|
|
||||||
- dso_daddr: name of library or module containing the data being executed
|
|
||||||
on at the time of sample
|
|
||||||
- locked: whether the bus was locked at the time of sample
|
|
||||||
- tlb: type of tlb access for the data at the time of sample
|
|
||||||
- mem: type of memory access for the data at the time of sample
|
|
||||||
- snoop: type of snoop (if any) for the data at the time of sample
|
|
||||||
- dcacheline: the cacheline the data address is on at the time of sample
|
|
||||||
|
|
||||||
And default sort keys are changed to local_weight, mem, sym, dso,
|
|
||||||
symbol_daddr, dso_daddr, snoop, tlb, locked, see '--mem-mode'.
|
|
||||||
|
|
||||||
-p::
|
-p::
|
||||||
--parent=<regex>::
|
--parent=<regex>::
|
||||||
A regex filter to identify parent. The parent is a caller of this
|
A regex filter to identify parent. The parent is a caller of this
|
||||||
|
|
Loading…
Reference in New Issue