diff options
| author | Jiri Olsa <[email protected]> | 2019-09-02 12:34:52 +0000 |
|---|---|---|
| committer | Arnaldo Carvalho de Melo <[email protected]> | 2019-09-25 12:51:44 +0000 |
| commit | 470579b0211d370fd3bd7c2f2b2b098f1ca1ae65 (patch) | |
| tree | be60bec876edad966b17602e7bde210bab4397de /tools/perf/util/python.c | |
| parent | perf tools: Rename perf_evlist__alloc_mmap() to evlist__alloc_mmap() (diff) | |
| download | kernel-470579b0211d370fd3bd7c2f2b2b098f1ca1ae65.tar.gz kernel-470579b0211d370fd3bd7c2f2b2b098f1ca1ae65.zip | |
perf tools: Rename perf_evlist__exit() to evlist__exit()
Rename perf_evlist__exit() to evlist__exit(), so we don't have a name
clash when we add perf_evlist__exit() to libperf.
Signed-off-by: Jiri Olsa <[email protected]>
Cc: Alexander Shishkin <[email protected]>
Cc: Michael Petlan <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Link: http://lore.kernel.org/lkml/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
Diffstat (limited to 'tools/perf/util/python.c')
| -rw-r--r-- | tools/perf/util/python.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/python.c b/tools/perf/util/python.c index b102d174b868..60a6b6e8e176 100644 --- a/tools/perf/util/python.c +++ b/tools/perf/util/python.c @@ -884,7 +884,7 @@ static int pyrf_evlist__init(struct pyrf_evlist *pevlist, static void pyrf_evlist__delete(struct pyrf_evlist *pevlist) { - perf_evlist__exit(&pevlist->evlist); + evlist__exit(&pevlist->evlist); Py_TYPE(pevlist)->tp_free((PyObject*)pevlist); } |
