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 /tools/perf/util/session.c | |
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>
Diffstat (limited to 'tools/perf/util/session.c')
-rw-r--r-- | tools/perf/util/session.c | 24 |
1 files changed, 24 insertions, 0 deletions
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 | } |