Re: [PATCH v5 7/7] perf report: Sort by sampled cycles percent per block for tui

From: Jiri Olsa
Date: Fri Nov 01 2019 - 04:34:46 EST


On Wed, Oct 30, 2019 at 02:04:30PM +0800, Jin Yao wrote:

SNIP

> diff --git a/tools/perf/ui/browsers/hists.h b/tools/perf/ui/browsers/hists.h
> index 91d3e18b50aa..078f2f2c7abd 100644
> --- a/tools/perf/ui/browsers/hists.h
> +++ b/tools/perf/ui/browsers/hists.h
> @@ -5,6 +5,7 @@
> #include "ui/browser.h"
>
> struct annotation_options;
> +struct evsel;
>
> struct hist_browser {
> struct ui_browser b;
> @@ -15,6 +16,7 @@ struct hist_browser {
> struct pstack *pstack;
> struct perf_env *env;
> struct annotation_options *annotation_opts;
> + struct evsel *block_evsel;

you should be able to get the evsel from hists_to_evsel function

jirka