lkml.org 
[lkml]   [2009]   [Nov]   [10]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH 2/3] perf bench: Fix sched-pipe.c for more confortable output
Date
This patch fixes sched-pipe.c for more confortable output.
Change points are comment style description and
formatting numerical values and its units.

Example of use:
| % ./perf bench sched pipe
| # Running sched/pipe benchmark...
| # Extecuted 1000000 pipe operations between two tasks
|
| Total time:5.822 [sec]
|
| 5.822553 usecs/op
| 171745 ops/sec

Signed-off-by: Hitoshi Mitake <mitake@dcl.info.waseda.ac.jp>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
---
tools/perf/bench/sched-pipe.c | 11 ++++++-----
1 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/tools/perf/bench/sched-pipe.c b/tools/perf/bench/sched-pipe.c
index a9ac186..97291fe 100644
--- a/tools/perf/bench/sched-pipe.c
+++ b/tools/perf/bench/sched-pipe.c
@@ -92,17 +92,18 @@ int bench_sched_pipe(int argc, const char **argv,

switch (bench_format) {
case BENCH_FORMAT_DEFAULT:
- printf("(executing %d pipe operations between two tasks)\n\n",
+ printf("# Extecuted %d pipe operations between two tasks\n\n",
loops);

result_usec = diff.tv_sec * 1000000;
result_usec += diff.tv_usec;

- printf("\tTotal time:%lu.%03lu sec\n",
- diff.tv_sec, diff.tv_usec / 1000);
- printf("\t\t%lf usecs/op\n",
+ printf(" %14s:%lu.%03lu [sec]\n\n", "Total time",
+ diff.tv_sec, diff.tv_usec/1000);
+
+ printf(" %14lf usecs/op\n",
(double)result_usec / (double)loops);
- printf("\t\t%d ops/sec\n",
+ printf(" %14d ops/sec\n",
(int)((double)loops /
((double)result_usec / (double)1000000)));
break;
--
1.5.6.5


\
 
 \ /
  Last update: 2009-11-10 16:07    [W:0.142 / U:0.140 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site