diff options
Diffstat (limited to 'tools/perf/util/stat-shadow.c')
| -rw-r--r-- | tools/perf/util/stat-shadow.c | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/tools/perf/util/stat-shadow.c b/tools/perf/util/stat-shadow.c index 2a5d8d7698ae..6ac03146889d 100644 --- a/tools/perf/util/stat-shadow.c +++ b/tools/perf/util/stat-shadow.c @@ -413,6 +413,11 @@ void perf_stat__print_shadow_stats(FILE *out, struct perf_evsel *evsel,  			ratio = total / avg;  		fprintf(out, " # %8.0f cycles / elision       ", ratio); +	} else if (perf_evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK)) { +		if ((ratio = avg_stats(&walltime_nsecs_stats)) != 0) +			fprintf(out, " # %8.3f CPUs utilized          ", avg / ratio); +		else +			fprintf(out, "                                   ");  	} else if (runtime_nsecs_stats[cpu].n != 0) {  		char unit = 'M'; |