[<prev] [next>] [day] [month] [year] [list]
Message-ID: <tip-3e304147cdb404ce6d1dd0e50cb19f52142bb363@git.kernel.org>
Date: Tue, 15 Sep 2009 09:33:02 GMT
From: tip-bot for Ingo Molnar <mingo@...e.hu>
To: linux-tip-commits@...r.kernel.org
Cc: linux-kernel@...r.kernel.org, acme@...hat.com, paulus@...ba.org,
hpa@...or.com, mingo@...hat.com, a.p.zijlstra@...llo.nl,
efault@....de, fweisbec@...il.com, tglx@...utronix.de,
mingo@...e.hu
Subject: [tip:perfcounters/core] perf sched: Output runtime and context switch totals
Commit-ID: 3e304147cdb404ce6d1dd0e50cb19f52142bb363
Gitweb: http://git.kernel.org/tip/3e304147cdb404ce6d1dd0e50cb19f52142bb363
Author: Ingo Molnar <mingo@...e.hu>
AuthorDate: Sat, 12 Sep 2009 10:08:34 +0200
Committer: Ingo Molnar <mingo@...e.hu>
CommitDate: Sun, 13 Sep 2009 10:22:45 +0200
perf sched: Output runtime and context switch totals
After:
-----------------------------------------------------------------------------------
Task | Runtime ms | Switches | Average delay ms | Maximum delay ms |
-----------------------------------------------------------------------------------
make | 0.678 ms | 13 | avg: 0.018 ms | max: 0.050 ms |
gcc | 0.014 ms | 2 | avg: 0.320 ms | max: 0.627 ms |
gcc | 0.000 ms | 2 | avg: 0.185 ms | max: 0.369 ms |
...
-----------------------------------------------------------------------------------
TOTAL: | 21.316 ms | 63 |
---------------------------------------------
Cc: Peter Zijlstra <a.p.zijlstra@...llo.nl>
Cc: Mike Galbraith <efault@....de>
Cc: Paul Mackerras <paulus@...ba.org>
Cc: Arnaldo Carvalho de Melo <acme@...hat.com>
Cc: Frederic Weisbecker <fweisbec@...il.com>
LKML-Reference: <new-submission>
Signed-off-by: Ingo Molnar <mingo@...e.hu>
---
tools/perf/builtin-sched.c | 11 ++++++++++-
1 files changed, 10 insertions(+), 1 deletions(-)
diff --git a/tools/perf/builtin-sched.c b/tools/perf/builtin-sched.c
index c382f53..727cc5b 100644
--- a/tools/perf/builtin-sched.c
+++ b/tools/perf/builtin-sched.c
@@ -1087,6 +1087,9 @@ static struct trace_sched_handler lat_ops = {
.fork_event = latency_fork_event,
};
+static u64 all_runtime;
+static u64 all_count;
+
static void output_lat_thread(struct thread_latency *lat)
{
struct lat_snapshot *shot;
@@ -1111,6 +1114,9 @@ static void output_lat_thread(struct thread_latency *lat)
total += delta;
}
+ all_runtime += total_runtime;
+ all_count += count;
+
if (!count)
return;
@@ -1133,7 +1139,7 @@ static void __cmd_lat(void)
read_events();
printf("-----------------------------------------------------------------------------------\n");
- printf(" Task | runtime ms | switches | average delay ms | maximum delay ms |\n");
+ printf(" Task | Runtime ms | Switches | Average delay ms | Maximum delay ms |\n");
printf("-----------------------------------------------------------------------------------\n");
next = rb_first(&lat_snapshot_root);
@@ -1147,6 +1153,9 @@ static void __cmd_lat(void)
}
printf("-----------------------------------------------------------------------------------\n");
+ printf(" TOTAL: |%9.3f ms |%9Ld |\n",
+ (double)all_runtime/1e9, all_count);
+ printf("---------------------------------------------\n");
}
static struct trace_sched_handler *trace_handler;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists