diff options
author | Jiri Olsa <jolsa@kernel.org> | 2019-07-21 07:24:32 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2019-07-29 17:34:45 -0400 |
commit | 634912d61ccc6bfeebb87716c276fbea20f63bdc (patch) | |
tree | c910e67f79eed9dabb9e1f70e5904a6d5037d910 /tools/perf/lib | |
parent | 93bce7e5bfcd570e9250c974b5c2c91d6b8332ef (diff) |
libperf: Add perf_evlist__new() function
Add perf_evlist__new() function to create and init a perf_evlist struct
dynamicaly.
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Alexey Budankov <alexey.budankov@linux.intel.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Michael Petlan <mpetlan@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/20190721112506.12306-46-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/lib')
-rw-r--r-- | tools/perf/lib/evlist.c | 11 | ||||
-rw-r--r-- | tools/perf/lib/include/perf/evlist.h | 1 | ||||
-rw-r--r-- | tools/perf/lib/libperf.map | 1 |
3 files changed, 13 insertions, 0 deletions
diff --git a/tools/perf/lib/evlist.c b/tools/perf/lib/evlist.c index 1b27fd2de9b9..0517deb4cb1c 100644 --- a/tools/perf/lib/evlist.c +++ b/tools/perf/lib/evlist.c | |||
@@ -3,6 +3,7 @@ | |||
3 | #include <linux/list.h> | 3 | #include <linux/list.h> |
4 | #include <internal/evlist.h> | 4 | #include <internal/evlist.h> |
5 | #include <internal/evsel.h> | 5 | #include <internal/evsel.h> |
6 | #include <linux/zalloc.h> | ||
6 | 7 | ||
7 | void perf_evlist__init(struct perf_evlist *evlist) | 8 | void perf_evlist__init(struct perf_evlist *evlist) |
8 | { | 9 | { |
@@ -23,3 +24,13 @@ void perf_evlist__remove(struct perf_evlist *evlist, | |||
23 | list_del_init(&evsel->node); | 24 | list_del_init(&evsel->node); |
24 | evlist->nr_entries -= 1; | 25 | evlist->nr_entries -= 1; |
25 | } | 26 | } |
27 | |||
28 | struct perf_evlist *perf_evlist__new(void) | ||
29 | { | ||
30 | struct perf_evlist *evlist = zalloc(sizeof(*evlist)); | ||
31 | |||
32 | if (evlist != NULL) | ||
33 | perf_evlist__init(evlist); | ||
34 | |||
35 | return evlist; | ||
36 | } | ||
diff --git a/tools/perf/lib/include/perf/evlist.h b/tools/perf/lib/include/perf/evlist.h index e0c87995c6ff..7255a60869a1 100644 --- a/tools/perf/lib/include/perf/evlist.h +++ b/tools/perf/lib/include/perf/evlist.h | |||
@@ -12,5 +12,6 @@ LIBPERF_API void perf_evlist__add(struct perf_evlist *evlist, | |||
12 | struct perf_evsel *evsel); | 12 | struct perf_evsel *evsel); |
13 | LIBPERF_API void perf_evlist__remove(struct perf_evlist *evlist, | 13 | LIBPERF_API void perf_evlist__remove(struct perf_evlist *evlist, |
14 | struct perf_evsel *evsel); | 14 | struct perf_evsel *evsel); |
15 | LIBPERF_API struct perf_evlist *perf_evlist__new(void); | ||
15 | 16 | ||
16 | #endif /* __LIBPERF_EVLIST_H */ | 17 | #endif /* __LIBPERF_EVLIST_H */ |
diff --git a/tools/perf/lib/libperf.map b/tools/perf/lib/libperf.map index e38473a8f32f..5e685d6c7a95 100644 --- a/tools/perf/lib/libperf.map +++ b/tools/perf/lib/libperf.map | |||
@@ -12,6 +12,7 @@ LIBPERF_0.0.1 { | |||
12 | perf_thread_map__get; | 12 | perf_thread_map__get; |
13 | perf_thread_map__put; | 13 | perf_thread_map__put; |
14 | perf_evsel__init; | 14 | perf_evsel__init; |
15 | perf_evlist__new; | ||
15 | perf_evlist__init; | 16 | perf_evlist__init; |
16 | perf_evlist__add; | 17 | perf_evlist__add; |
17 | perf_evlist__remove; | 18 | perf_evlist__remove; |