projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5865fe3
)
perf python: Add missing PERF_RECORD_{MMAP2,AUX,etc}
author
Arnaldo Carvalho de Melo
<
[email protected]
>
Fri, 24 Jul 2015 16:04:09 +0000
(13:04 -0300)
committer
Arnaldo Carvalho de Melo
<
[email protected]
>
Wed, 29 Jul 2015 13:51:45 +0000
(10:51 -0300)
Those were added to the kernel and tooling but we forgot to
expose them via the python binding, fix it.
Cc: Adrian Hunter <
[email protected]
>
Cc: Borislav Petkov <
[email protected]
>
Cc: David Ahern <
[email protected]
>
Cc: Frederic Weisbecker <
[email protected]
>
Cc: Jiri Olsa <
[email protected]
>
Cc: Namhyung Kim <
[email protected]
>
Cc: Stephane Eranian <
[email protected]
>
Link:
http://lkml.kernel.org/n/
[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <
[email protected]
>
tools/perf/util/python.c
patch
|
blob
|
history
diff --git
a/tools/perf/util/python.c
b/tools/perf/util/python.c
index a851b791151bc72f128c62b11d8a87bb01ce843f..6324fe6b161e8f45a60fdde0573e76e6fc174298 100644
(file)
--- a/
tools/perf/util/python.c
+++ b/
tools/perf/util/python.c
@@
-1013,6
+1013,12
@@
static struct {
PERF_CONST(RECORD_FORK),
PERF_CONST(RECORD_READ),
PERF_CONST(RECORD_SAMPLE),
+ PERF_CONST(RECORD_MMAP2),
+ PERF_CONST(RECORD_AUX),
+ PERF_CONST(RECORD_ITRACE_START),
+ PERF_CONST(RECORD_LOST_SAMPLES),
+ PERF_CONST(RECORD_SWITCH),
+ PERF_CONST(RECORD_SWITCH_CPU_WIDE),
{ .name = NULL, },
};