diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2020-04-24 15:40:54 +0200 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2020-05-05 21:35:29 +0200 |
commit | ca6c9c8b107f9788662117587cd24bbb19cea94d (patch) | |
tree | 6c0950cde40b6edf284a2e074c5184655e6c9a8a /tools/perf/util/top.h | |
parent | perf record: Move sb_evlist to 'struct record' (diff) | |
download | linux-ca6c9c8b107f9788662117587cd24bbb19cea94d.tar.xz linux-ca6c9c8b107f9788662117587cd24bbb19cea94d.zip |
perf top: Move sb_evlist to 'struct perf_top'
Where state related to a 'perf top' session is grouped.
Acked-by: Jiri Olsa <jolsa@redhat.com>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Song Liu <songliubraving@fb.com>
Link: http://lore.kernel.org/lkml/20200429131106.27974-3-acme@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/top.h')
-rw-r--r-- | tools/perf/util/top.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/top.h b/tools/perf/util/top.h index 45dc84ddff37..ff8391208ecd 100644 --- a/tools/perf/util/top.h +++ b/tools/perf/util/top.h @@ -18,7 +18,7 @@ struct perf_session; struct perf_top { struct perf_tool tool; - struct evlist *evlist; + struct evlist *evlist, *sb_evlist; struct record_opts record_opts; struct annotation_options annotation_opts; struct evswitch evswitch; |