diff options
Diffstat (limited to 'tools/perf/builtin-report.c')
| -rw-r--r-- | tools/perf/builtin-report.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/tools/perf/builtin-report.c b/tools/perf/builtin-report.c index 22478ff2b706..79a33eb1a10d 100644 --- a/tools/perf/builtin-report.c +++ b/tools/perf/builtin-report.c @@ -94,10 +94,9 @@ static int report__config(const char *var, const char *value, void *cb)  		symbol_conf.cumulate_callchain = perf_config_bool(var, value);  		return 0;  	} -	if (!strcmp(var, "report.queue-size")) { -		rep->queue_size = perf_config_u64(var, value); -		return 0; -	} +	if (!strcmp(var, "report.queue-size")) +		return perf_config_u64(&rep->queue_size, var, value); +  	if (!strcmp(var, "report.sort_order")) {  		default_sort_order = strdup(value);  		return 0; @@ -558,6 +557,7 @@ static int __cmd_report(struct report *rep)  			ui__error("failed to set cpu bitmap\n");  			return ret;  		} +		session->itrace_synth_opts->cpu_bitmap = rep->cpu_bitmap;  	}  	if (rep->show_threads) { |