diff options
author | Frederic Weisbecker <fweisbec@gmail.com> | 2011-05-21 11:49:00 -0400 |
---|---|---|
committer | Frederic Weisbecker <fweisbec@gmail.com> | 2011-05-21 21:12:29 -0400 |
commit | 74429964d8e29c0107fa6e9cdf35b8f33f57405d (patch) | |
tree | 8ffdb81449365e3b720e7bfea6ae2ba2b543dae1 /tools/perf/util/header.c | |
parent | dd5f5fd1083601d9145168ce43a268a068add81a (diff) |
perf tools: Move evlist sample helpers to evlist area
These APIs should belong to evlist.c as they may not be
exclusively tied to the headers.
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Stephane Eranian <eranian@google.com
Diffstat (limited to 'tools/perf/util/header.c')
-rw-r--r-- | tools/perf/util/header.c | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/tools/perf/util/header.c b/tools/perf/util/header.c index 93862a8027ea..0717bebc7649 100644 --- a/tools/perf/util/header.c +++ b/tools/perf/util/header.c | |||
@@ -934,37 +934,6 @@ out_delete_evlist: | |||
934 | return -ENOMEM; | 934 | return -ENOMEM; |
935 | } | 935 | } |
936 | 936 | ||
937 | u64 perf_evlist__sample_type(struct perf_evlist *evlist) | ||
938 | { | ||
939 | struct perf_evsel *pos; | ||
940 | u64 type = 0; | ||
941 | |||
942 | list_for_each_entry(pos, &evlist->entries, node) { | ||
943 | if (!type) | ||
944 | type = pos->attr.sample_type; | ||
945 | else if (type != pos->attr.sample_type) | ||
946 | die("non matching sample_type"); | ||
947 | } | ||
948 | |||
949 | return type; | ||
950 | } | ||
951 | |||
952 | bool perf_evlist__sample_id_all(const struct perf_evlist *evlist) | ||
953 | { | ||
954 | bool value = false, first = true; | ||
955 | struct perf_evsel *pos; | ||
956 | |||
957 | list_for_each_entry(pos, &evlist->entries, node) { | ||
958 | if (first) { | ||
959 | value = pos->attr.sample_id_all; | ||
960 | first = false; | ||
961 | } else if (value != pos->attr.sample_id_all) | ||
962 | die("non matching sample_id_all"); | ||
963 | } | ||
964 | |||
965 | return value; | ||
966 | } | ||
967 | |||
968 | int perf_event__synthesize_attr(struct perf_event_attr *attr, u16 ids, u64 *id, | 937 | int perf_event__synthesize_attr(struct perf_event_attr *attr, u16 ids, u64 *id, |
969 | perf_event__handler_t process, | 938 | perf_event__handler_t process, |
970 | struct perf_session *session) | 939 | struct perf_session *session) |