diff options
author | Jiri Olsa <jolsa@kernel.org> | 2015-10-25 10:51:27 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2015-12-17 12:38:18 -0500 |
commit | 374fb9e362f64e730388abc1de9bb93829670a54 (patch) | |
tree | a438a34f267430ea49ff346960f5e7efee08b0a8 | |
parent | eb12a1afdc02e59fc09934743490549c77327b1a (diff) |
perf tools: Add stat config user level event
Adding the stat config event to pass/store stat config data, so report
tools (report/script) know how to interpret stat data.
The config data is stored in a 'tag|value' way to allow for easy
extension and backwards compatibility.
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Tested-by: Kan Liang <kan.liang@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1445784728-21732-12-git-send-email-jolsa@kernel.org
[ stat_config_term_event -> stat_config_event_entry ]
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r-- | tools/perf/util/event.c | 1 | ||||
-rw-r--r-- | tools/perf/util/event.h | 20 | ||||
-rw-r--r-- | tools/perf/util/session.c | 24 | ||||
-rw-r--r-- | tools/perf/util/tool.h | 3 |
4 files changed, 47 insertions, 1 deletions
diff --git a/tools/perf/util/event.c b/tools/perf/util/event.c index f31ab3b8f918..43e2dfc2c73b 100644 --- a/tools/perf/util/event.c +++ b/tools/perf/util/event.c | |||
@@ -39,6 +39,7 @@ static const char *perf_event__names[] = { | |||
39 | [PERF_RECORD_AUXTRACE_ERROR] = "AUXTRACE_ERROR", | 39 | [PERF_RECORD_AUXTRACE_ERROR] = "AUXTRACE_ERROR", |
40 | [PERF_RECORD_THREAD_MAP] = "THREAD_MAP", | 40 | [PERF_RECORD_THREAD_MAP] = "THREAD_MAP", |
41 | [PERF_RECORD_CPU_MAP] = "CPU_MAP", | 41 | [PERF_RECORD_CPU_MAP] = "CPU_MAP", |
42 | [PERF_RECORD_STAT_CONFIG] = "STAT_CONFIG", | ||
42 | }; | 43 | }; |
43 | 44 | ||
44 | const char *perf_event__name(unsigned int id) | 45 | const char *perf_event__name(unsigned int id) |
diff --git a/tools/perf/util/event.h b/tools/perf/util/event.h index 74a434116b2c..16cee44de56b 100644 --- a/tools/perf/util/event.h +++ b/tools/perf/util/event.h | |||
@@ -228,6 +228,7 @@ enum perf_user_event_type { /* above any possible kernel type */ | |||
228 | PERF_RECORD_AUXTRACE_ERROR = 72, | 228 | PERF_RECORD_AUXTRACE_ERROR = 72, |
229 | PERF_RECORD_THREAD_MAP = 73, | 229 | PERF_RECORD_THREAD_MAP = 73, |
230 | PERF_RECORD_CPU_MAP = 74, | 230 | PERF_RECORD_CPU_MAP = 74, |
231 | PERF_RECORD_STAT_CONFIG = 75, | ||
231 | PERF_RECORD_HEADER_MAX | 232 | PERF_RECORD_HEADER_MAX |
232 | }; | 233 | }; |
233 | 234 | ||
@@ -395,6 +396,24 @@ struct thread_map_event { | |||
395 | struct thread_map_event_entry entries[]; | 396 | struct thread_map_event_entry entries[]; |
396 | }; | 397 | }; |
397 | 398 | ||
399 | enum { | ||
400 | PERF_STAT_CONFIG_TERM__AGGR_MODE = 0, | ||
401 | PERF_STAT_CONFIG_TERM__INTERVAL = 1, | ||
402 | PERF_STAT_CONFIG_TERM__SCALE = 2, | ||
403 | PERF_STAT_CONFIG_TERM__MAX = 3, | ||
404 | }; | ||
405 | |||
406 | struct stat_config_event_entry { | ||
407 | u64 tag; | ||
408 | u64 val; | ||
409 | }; | ||
410 | |||
411 | struct stat_config_event { | ||
412 | struct perf_event_header header; | ||
413 | u64 nr; | ||
414 | struct stat_config_event_entry data[]; | ||
415 | }; | ||
416 | |||
398 | union perf_event { | 417 | union perf_event { |
399 | struct perf_event_header header; | 418 | struct perf_event_header header; |
400 | struct mmap_event mmap; | 419 | struct mmap_event mmap; |
@@ -419,6 +438,7 @@ union perf_event { | |||
419 | struct context_switch_event context_switch; | 438 | struct context_switch_event context_switch; |
420 | struct thread_map_event thread_map; | 439 | struct thread_map_event thread_map; |
421 | struct cpu_map_event cpu_map; | 440 | struct cpu_map_event cpu_map; |
441 | struct stat_config_event stat_config; | ||
422 | }; | 442 | }; |
423 | 443 | ||
424 | void perf_event__print_totals(void); | 444 | void perf_event__print_totals(void); |
diff --git a/tools/perf/util/session.c b/tools/perf/util/session.c index 4350f5e85bf5..fbc52ab3eb75 100644 --- a/tools/perf/util/session.c +++ b/tools/perf/util/session.c | |||
@@ -315,6 +315,15 @@ int process_event_cpu_map_stub(struct perf_tool *tool __maybe_unused, | |||
315 | return 0; | 315 | return 0; |
316 | } | 316 | } |
317 | 317 | ||
318 | static | ||
319 | int process_event_stat_config_stub(struct perf_tool *tool __maybe_unused, | ||
320 | union perf_event *event __maybe_unused, | ||
321 | struct perf_session *session __maybe_unused) | ||
322 | { | ||
323 | dump_printf(": unhandled!\n"); | ||
324 | return 0; | ||
325 | } | ||
326 | |||
318 | void perf_tool__fill_defaults(struct perf_tool *tool) | 327 | void perf_tool__fill_defaults(struct perf_tool *tool) |
319 | { | 328 | { |
320 | if (tool->sample == NULL) | 329 | if (tool->sample == NULL) |
@@ -369,6 +378,8 @@ void perf_tool__fill_defaults(struct perf_tool *tool) | |||
369 | tool->thread_map = process_event_thread_map_stub; | 378 | tool->thread_map = process_event_thread_map_stub; |
370 | if (tool->cpu_map == NULL) | 379 | if (tool->cpu_map == NULL) |
371 | tool->cpu_map = process_event_cpu_map_stub; | 380 | tool->cpu_map = process_event_cpu_map_stub; |
381 | if (tool->stat_config == NULL) | ||
382 | tool->stat_config = process_event_stat_config_stub; | ||
372 | } | 383 | } |
373 | 384 | ||
374 | static void swap_sample_id_all(union perf_event *event, void *data) | 385 | static void swap_sample_id_all(union perf_event *event, void *data) |
@@ -686,6 +697,16 @@ static void perf_event__cpu_map_swap(union perf_event *event, | |||
686 | } | 697 | } |
687 | } | 698 | } |
688 | 699 | ||
700 | static void perf_event__stat_config_swap(union perf_event *event, | ||
701 | bool sample_id_all __maybe_unused) | ||
702 | { | ||
703 | u64 size; | ||
704 | |||
705 | size = event->stat_config.nr * sizeof(event->stat_config.data[0]); | ||
706 | size += 1; /* nr item itself */ | ||
707 | mem_bswap_64(&event->stat_config.nr, size); | ||
708 | } | ||
709 | |||
689 | typedef void (*perf_event__swap_op)(union perf_event *event, | 710 | typedef void (*perf_event__swap_op)(union perf_event *event, |
690 | bool sample_id_all); | 711 | bool sample_id_all); |
691 | 712 | ||
@@ -715,6 +736,7 @@ static perf_event__swap_op perf_event__swap_ops[] = { | |||
715 | [PERF_RECORD_AUXTRACE_ERROR] = perf_event__auxtrace_error_swap, | 736 | [PERF_RECORD_AUXTRACE_ERROR] = perf_event__auxtrace_error_swap, |
716 | [PERF_RECORD_THREAD_MAP] = perf_event__thread_map_swap, | 737 | [PERF_RECORD_THREAD_MAP] = perf_event__thread_map_swap, |
717 | [PERF_RECORD_CPU_MAP] = perf_event__cpu_map_swap, | 738 | [PERF_RECORD_CPU_MAP] = perf_event__cpu_map_swap, |
739 | [PERF_RECORD_STAT_CONFIG] = perf_event__stat_config_swap, | ||
718 | [PERF_RECORD_HEADER_MAX] = NULL, | 740 | [PERF_RECORD_HEADER_MAX] = NULL, |
719 | }; | 741 | }; |
720 | 742 | ||
@@ -1255,6 +1277,8 @@ static s64 perf_session__process_user_event(struct perf_session *session, | |||
1255 | return tool->thread_map(tool, event, session); | 1277 | return tool->thread_map(tool, event, session); |
1256 | case PERF_RECORD_CPU_MAP: | 1278 | case PERF_RECORD_CPU_MAP: |
1257 | return tool->cpu_map(tool, event, session); | 1279 | return tool->cpu_map(tool, event, session); |
1280 | case PERF_RECORD_STAT_CONFIG: | ||
1281 | return tool->stat_config(tool, event, session); | ||
1258 | default: | 1282 | default: |
1259 | return -EINVAL; | 1283 | return -EINVAL; |
1260 | } | 1284 | } |
diff --git a/tools/perf/util/tool.h b/tools/perf/util/tool.h index 9e5925c78519..aa7ae73d76b4 100644 --- a/tools/perf/util/tool.h +++ b/tools/perf/util/tool.h | |||
@@ -57,7 +57,8 @@ struct perf_tool { | |||
57 | auxtrace_info, | 57 | auxtrace_info, |
58 | auxtrace_error, | 58 | auxtrace_error, |
59 | thread_map, | 59 | thread_map, |
60 | cpu_map; | 60 | cpu_map, |
61 | stat_config; | ||
61 | event_op3 auxtrace; | 62 | event_op3 auxtrace; |
62 | bool ordered_events; | 63 | bool ordered_events; |
63 | bool ordering_requires_timestamps; | 64 | bool ordering_requires_timestamps; |