Skip to content

Commit f2567e1

Browse files
captain5050acmel
authored andcommitted
perf stat: Fix hard coded LL miss units
Copy-paste error where LL cache misses are reported as l1i. Fixes: 0a57b91 ("perf stat: Use counts rather than saved_value") Suggested-by: Guillaume Endignoux <[email protected]> Reviewed-by: Kan Liang <[email protected]> Signed-off-by: Ian Rogers <[email protected]> Cc: Adrian Hunter <[email protected]> Cc: Alexander Shishkin <[email protected]> Cc: Ian Rogers <[email protected]> Cc: Ingo Molnar <[email protected]> Cc: Jiri Olsa <[email protected]> Cc: John Garry <[email protected]> Cc: Mark Rutland <[email protected]> Cc: Namhyung Kim <[email protected]> Cc: Peter Zijlstra <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
1 parent 7d1405c commit f2567e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/perf/util/stat-shadow.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ static void print_ll_miss(struct perf_stat_config *config,
264264
static const double color_ratios[3] = {20.0, 10.0, 5.0};
265265

266266
print_ratio(config, evsel, aggr_idx, misses, out, STAT_LL_CACHE, color_ratios,
267-
"of all L1-icache accesses");
267+
"of all LL-cache accesses");
268268
}
269269

270270
static void print_dtlb_miss(struct perf_stat_config *config,

0 commit comments

Comments
 (0)