6 perf-kmem - Tool to trace/measure kernel memory properties
11 'perf kmem' [<options>] {record|stat}
15 There are two variants of perf kmem:
17 'perf kmem [<options>] record [<perf-record-options>] <command>' to
18 record the kmem events of an arbitrary workload. Additional 'perf
19 record' options may be specified after record, such as '-o' to
20 change the output file name.
22 'perf kmem [<options>] stat' to report kernel memory statistics.
28 For stat, select the input file (default: perf.data unless stdin is a
33 Don't do ownership validation
37 Be more verbose. (show symbol address, etc)
40 Show per-callsite statistics
43 Show per-allocation statistics
46 --sort=<key[,key2...]>::
47 Sort the output (default: 'frag,hit,bytes' for slab and 'bytes,hit'
48 for page). Available sort keys are 'ptr, callsite, bytes, hit,
49 pingpong, frag' for slab and 'page, callsite, bytes, hit, order,
50 migtype, gfp' for page. This option should be preceded by one of the
51 mode selection options - i.e. --slab, --page, --alloc and/or --caller.
58 Print raw ip instead of symbol
61 Analyze SLAB allocator events.
64 Analyze page allocator events
67 Show live page stat. The perf kmem shows total allocation stat by
68 default, but this option shows live (currently allocated) pages
69 instead. (This option works with --page option only)
71 --time=<start>,<stop>::
72 Only analyze samples within given time window: <start>,<stop>. Times
73 have the format seconds.microseconds. If start is not given (i.e., time
74 string is ',x.y') then analysis starts at the beginning of the file. If
75 stop time is not given (i.e, time string is 'x.y,') then analysis goes
80 linkperf:perf-record[1]