Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 210ad39f authored by Ingo Molnar's avatar Ingo Molnar
Browse files

perf stat: Use percentages for scaling output



Peter expressed a strong preference for percentage based
display of scaled values - so revert to that from the
recently introduced multiplication-factor unit.

Reported-by: default avatarPeter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Jaswinder Singh Rajput <jaswinder@kernel.org>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
LKML-Reference: <new-submission>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 4078c444
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -307,7 +307,8 @@ static void print_counter(int counter)
		abs_printout(counter, count, noise);

	if (scaled)
		fprintf(stderr, "  (%7.2fx scaled)", (double)count[1]/count[2]);
		fprintf(stderr, "  (scaled from %.2f%%)",
			(double) count[2] / count[1] * 100);

	fprintf(stderr, "\n");
}