diff options
Diffstat (limited to 'tools/perf/builtin-top.c')
| -rw-r--r-- | tools/perf/builtin-top.c | 9 | 
1 files changed, 5 insertions, 4 deletions
| diff --git a/tools/perf/builtin-top.c b/tools/perf/builtin-top.c index 72f6eb7b417..67bdb9f14ad 100644 --- a/tools/perf/builtin-top.c +++ b/tools/perf/builtin-top.c @@ -231,7 +231,7 @@ static void perf_top__show_details(struct perf_top *top)  	printf("Showing %s for %s\n", perf_evsel__name(top->sym_evsel), symbol->name);  	printf("  Events  Pcnt (>=%d%%)\n", top->sym_pcnt_filter); -	more = symbol__annotate_printf(symbol, he->ms.map, top->sym_evsel->idx, +	more = symbol__annotate_printf(symbol, he->ms.map, top->sym_evsel,  				       0, top->sym_pcnt_filter, top->print_entries, 4);  	if (top->zero)  		symbol__annotate_zero_histogram(symbol, top->sym_evsel->idx); @@ -251,7 +251,8 @@ static struct hist_entry *perf_evsel__add_hist_entry(struct perf_evsel *evsel,  {  	struct hist_entry *he; -	he = __hists__add_entry(&evsel->hists, al, NULL, sample->period); +	he = __hists__add_entry(&evsel->hists, al, NULL, sample->period, +				sample->weight);  	if (he == NULL)  		return NULL; @@ -1088,7 +1089,7 @@ int cmd_top(int argc, const char **argv, const char *prefix __maybe_unused)  	OPT_INCR('v', "verbose", &verbose,  		    "be more verbose (show counter open errors, etc)"),  	OPT_STRING('s', "sort", &sort_order, "key[,key2...]", -		   "sort by key(s): pid, comm, dso, symbol, parent"), +		   "sort by key(s): pid, comm, dso, symbol, parent, weight, local_weight"),  	OPT_BOOLEAN('n', "show-nr-samples", &symbol_conf.show_nr_samples,  		    "Show a column with the number of samples"),  	OPT_CALLBACK_DEFAULT('G', "call-graph", &top.record_opts, @@ -1116,7 +1117,7 @@ int cmd_top(int argc, const char **argv, const char *prefix __maybe_unused)  		NULL  	}; -	top.evlist = perf_evlist__new(NULL, NULL); +	top.evlist = perf_evlist__new();  	if (top.evlist == NULL)  		return -ENOMEM; |