]> git.karo-electronics.de Git - linux-beck.git/commitdiff
perf tools: Move evlist sample helpers to evlist area
authorFrederic Weisbecker <fweisbec@gmail.com>
Sat, 21 May 2011 15:49:00 +0000 (17:49 +0200)
committerFrederic Weisbecker <fweisbec@gmail.com>
Sun, 22 May 2011 01:12:29 +0000 (03:12 +0200)
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
tools/perf/util/evlist.c
tools/perf/util/evlist.h
tools/perf/util/header.c
tools/perf/util/header.h

index 45da8d186b492d4f82512862aef867acd4649f09..98cb1f30aa296b48eea97183a556e53a51621a75 100644 (file)
@@ -398,3 +398,34 @@ int perf_evlist__set_filters(struct perf_evlist *evlist)
 
        return 0;
 }
+
+u64 perf_evlist__sample_type(struct perf_evlist *evlist)
+{
+       struct perf_evsel *pos;
+       u64 type = 0;
+
+       list_for_each_entry(pos, &evlist->entries, node) {
+               if (!type)
+                       type = pos->attr.sample_type;
+               else if (type != pos->attr.sample_type)
+                       die("non matching sample_type");
+       }
+
+       return type;
+}
+
+bool perf_evlist__sample_id_all(const struct perf_evlist *evlist)
+{
+       bool value = false, first = true;
+       struct perf_evsel *pos;
+
+       list_for_each_entry(pos, &evlist->entries, node) {
+               if (first) {
+                       value = pos->attr.sample_id_all;
+                       first = false;
+               } else if (value != pos->attr.sample_id_all)
+                       die("non matching sample_id_all");
+       }
+
+       return value;
+}
index 8b1cb7a4c5f1edbe2d5b3beafce04d2b0606049e..a8556b68c39272502e8c4c4717a2ad7940299cc2 100644 (file)
@@ -65,4 +65,7 @@ int perf_evlist__create_maps(struct perf_evlist *evlist, pid_t target_pid,
 void perf_evlist__delete_maps(struct perf_evlist *evlist);
 int perf_evlist__set_filters(struct perf_evlist *evlist);
 
+u64 perf_evlist__sample_type(struct perf_evlist *evlist);
+bool perf_evlist__sample_id_all(const struct perf_evlist *evlist);
+
 #endif /* __PERF_EVLIST_H */
index 93862a8027ea05c675616ff7004879309584b311..0717bebc76494d24cfc68bec984aba404058438c 100644 (file)
@@ -934,37 +934,6 @@ out_delete_evlist:
        return -ENOMEM;
 }
 
-u64 perf_evlist__sample_type(struct perf_evlist *evlist)
-{
-       struct perf_evsel *pos;
-       u64 type = 0;
-
-       list_for_each_entry(pos, &evlist->entries, node) {
-               if (!type)
-                       type = pos->attr.sample_type;
-               else if (type != pos->attr.sample_type)
-                       die("non matching sample_type");
-       }
-
-       return type;
-}
-
-bool perf_evlist__sample_id_all(const struct perf_evlist *evlist)
-{
-       bool value = false, first = true;
-       struct perf_evsel *pos;
-
-       list_for_each_entry(pos, &evlist->entries, node) {
-               if (first) {
-                       value = pos->attr.sample_id_all;
-                       first = false;
-               } else if (value != pos->attr.sample_id_all)
-                       die("non matching sample_id_all");
-       }
-
-       return value;
-}
-
 int perf_event__synthesize_attr(struct perf_event_attr *attr, u16 ids, u64 *id,
                                perf_event__handler_t process,
                                struct perf_session *session)
index 456661d7f10e7a2594699ae005e451c25914b21c..1886256768a176e72ae9e3f3e476dde7b26ea728 100644 (file)
@@ -64,8 +64,6 @@ int perf_header__write_pipe(int fd);
 int perf_header__push_event(u64 id, const char *name);
 char *perf_header__find_event(u64 id);
 
-u64 perf_evlist__sample_type(struct perf_evlist *evlist);
-bool perf_evlist__sample_id_all(const struct perf_evlist *evlist);
 void perf_header__set_feat(struct perf_header *header, int feat);
 void perf_header__clear_feat(struct perf_header *header, int feat);
 bool perf_header__has_feat(const struct perf_header *header, int feat);