aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/perf/builtin-lock.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/builtin-lock.c b/tools/perf/builtin-lock.c
index 3b304ed4d2e9..d7dde9cbbdf4 100644
--- a/tools/perf/builtin-lock.c
+++ b/tools/perf/builtin-lock.c
@@ -733,8 +733,8 @@ static void print_bad_events(int bad, int total)
733 { "acquire", "acquired", "contended", "release" }; 733 { "acquire", "acquired", "contended", "release" };
734 734
735 pr_info("\n=== output for debug===\n\n"); 735 pr_info("\n=== output for debug===\n\n");
736 pr_info("bad:%d, total:%d\n", bad, total); 736 pr_info("bad: %d, total: %d\n", bad, total);
737 pr_info("bad rate:%f\n", (double)(bad / total)); 737 pr_info("bad rate: %f %%\n", (double)bad / (double)total * 100);
738 pr_info("histogram of events caused bad sequence\n"); 738 pr_info("histogram of events caused bad sequence\n");
739 for (i = 0; i < BROKEN_MAX; i++) 739 for (i = 0; i < BROKEN_MAX; i++)
740 pr_info(" %10s: %d\n", name[i], bad_hist[i]); 740 pr_info(" %10s: %d\n", name[i], bad_hist[i]);