#ifndef __PERF_VALUES_H #define __PERF_VALUES_H #include struct perf_read_values { int threads; int threads_max; u32 *pid, *tid; int counters; int counters_max; u64 *counterrawid; char **countername; u64 **value; }; int perf_read_values_init(struct perf_read_values *values); void perf_read_values_destroy(struct perf_read_values *values); int perf_read_values_add_value(struct perf_read_values *values, u32 pid, u32 tid, u64 rawid, const char *name, u64 value); void perf_read_values_display(FILE *fp, struct perf_read_values *values, int raw); #endif /* __PERF_VALUES_H */ git.cgi/linux/net-next.git' title='net-next.git Git repository'/>
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIngo Molnar <mingo@kernel.org>2017-01-17 16:58:53 +0100
committerIngo Molnar <mingo@kernel.org>2017-01-17 17:03:16 +0100
commit31f5260a7653e6042ac28578db1c61e84f2d7898 (patch)
tree5a039c72253ffb0597917ef392dd142efb181b24 /net/batman-adv/log.h
parent4e71de7986386d5fd3765458f27d612931f27f5e (diff)
parent613f050d68a8ed3c0b18b9568698908ef7bbc1f7 (diff)
Merge tag 'perf-urgent-for-mingo-4.10-20170117' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/urgent
Pull 'perf probe' fixes from Arnaldo Carvalho de Melo <acme@redhat.com> - Show correct locations for 'perf probe' on modules (Masami Hiramatsu) - Correctly handle 'perf probe's on GCC generated functions in modules (Masami Hiramatsu) Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com> Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'net/batman-adv/log.h')