aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven Rostedt <srostedt@redhat.com>2010-02-10 20:56:09 -0500
committerSteven Rostedt <rostedt@goodmis.org>2010-02-10 20:56:09 -0500
commitd8c1aed41b421ab60a2b6fdbf4776c46dc66ec94 (patch)
tree84c9c777228d45e88c17bc1fa79fd770edf76433
parentbdeeb2a879e2df29cb32c3fed17131df3fdebe03 (diff)
trace-graph: Show wake latency in task plots
Add the ability for a plot to draw a empty box. Then with this ability, change the task plots to show a hollow red box from the time the task was woken, till the time it was scheduled. Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
-rw-r--r--trace-graph.c8
-rw-r--r--trace-graph.h2
-rw-r--r--trace-plot-task.c14
-rw-r--r--trace-plot.c1
4 files changed, 22 insertions, 3 deletions
diff --git a/trace-graph.c b/trace-graph.c
index d62882c..be19a95 100644
--- a/trace-graph.c
+++ b/trace-graph.c
@@ -1402,7 +1402,8 @@ static gint draw_plot_line(struct graph_info *ginfo, int i,
1402 1402
1403static void draw_plot_box(struct graph_info *ginfo, int i, 1403static void draw_plot_box(struct graph_info *ginfo, int i,
1404 unsigned long long start, 1404 unsigned long long start,
1405 unsigned long long end, GdkGC *gc) 1405 unsigned long long end,
1406 gboolean fill, GdkGC *gc)
1406{ 1407{
1407 gint x1; 1408 gint x1;
1408 gint x2; 1409 gint x2;
@@ -1411,7 +1412,7 @@ static void draw_plot_box(struct graph_info *ginfo, int i,
1411 x2 = convert_time_to_x(ginfo, end); 1412 x2 = convert_time_to_x(ginfo, end);
1412 1413
1413 gdk_draw_rectangle(ginfo->curr_pixmap, gc, 1414 gdk_draw_rectangle(ginfo->curr_pixmap, gc,
1414 TRUE, 1415 fill,
1415 x1, PLOT_BOX_TOP(i), 1416 x1, PLOT_BOX_TOP(i),
1416 x2 - x1, PLOT_BOX_SIZE); 1417 x2 - x1, PLOT_BOX_SIZE);
1417} 1418}
@@ -1448,7 +1449,8 @@ static void draw_plot(struct graph_info *ginfo, struct graph_plot *plot,
1448 set_color(ginfo->draw, plot->gc, plot->last_color); 1449 set_color(ginfo->draw, plot->gc, plot->last_color);
1449 } 1450 }
1450 1451
1451 draw_plot_box(ginfo, plot->pos, info.bstart, info.bend, plot->gc); 1452 draw_plot_box(ginfo, plot->pos, info.bstart, info.bend,
1453 info.bfill, plot->gc);
1452 } 1454 }
1453 1455
1454 if (info.line) { 1456 if (info.line) {
diff --git a/trace-graph.h b/trace-graph.h
index 3874aa9..6a00d82 100644
--- a/trace-graph.h
+++ b/trace-graph.h
@@ -22,6 +22,7 @@ struct plot_info {
22 int bcolor; 22 int bcolor;
23 unsigned long long bstart; 23 unsigned long long bstart;
24 unsigned long long bend; 24 unsigned long long bend;
25 gboolean bfill;
25}; 26};
26 27
27/* 28/*
@@ -44,6 +45,7 @@ struct plot_info {
44 * bstart is the time the box starts at 45 * bstart is the time the box starts at
45 * bend is the time the box ends at 46 * bend is the time the box ends at
46 * (bstart and bend are ignored if box is 0) 47 * (bstart and bend are ignored if box is 0)
48 * bfill whether or not to fill the box (default TRUE)
47 * time is the time of the current event 49 * time is the time of the current event
48 * 50 *
49 * end: 51 * end:
diff --git a/trace-plot-task.c b/trace-plot-task.c
index a42202f..32bfc68 100644
--- a/trace-plot-task.c
+++ b/trace-plot-task.c
@@ -2,10 +2,13 @@
2 2
3#include "trace-graph.h" 3#include "trace-graph.h"
4 4
5#define RED 0xff
6
5struct task_plot_info { 7struct task_plot_info {
6 int pid; 8 int pid;
7 struct cpu_data *cpu_data; 9 struct cpu_data *cpu_data;
8 unsigned long long last_time; 10 unsigned long long last_time;
11 unsigned long long wake_time;
9 int last_cpu; 12 int last_cpu;
10}; 13};
11 14
@@ -305,6 +308,8 @@ static int task_plot_event(struct graph_info *ginfo,
305 task_info->last_cpu = -1; 308 task_info->last_cpu = -1;
306 } 309 }
307 310
311 task_info->wake_time = record->ts;
312
308 return 1; 313 return 1;
309 } 314 }
310 315
@@ -325,6 +330,13 @@ static int task_plot_event(struct graph_info *ginfo,
325 /* Just got scheduled in */ 330 /* Just got scheduled in */
326 task_info->last_cpu = record->cpu; 331 task_info->last_cpu = record->cpu;
327 task_info->last_time = record->ts; 332 task_info->last_time = record->ts;
333 if (task_info->wake_time) {
334 info->box = TRUE;
335 info->bfill = FALSE;
336 info->bstart = task_info->wake_time;
337 info->bend = record->ts;
338 info->bcolor = RED;
339 }
328 } else if (!info->box) { 340 } else if (!info->box) {
329 /* just got scheduled out */ 341 /* just got scheduled out */
330 info->box = TRUE; 342 info->box = TRUE;
@@ -335,6 +347,8 @@ static int task_plot_event(struct graph_info *ginfo,
335 } 347 }
336 } 348 }
337 349
350 task_info->wake_time = 0;
351
338 return 1; 352 return 1;
339 } 353 }
340 354
diff --git a/trace-plot.c b/trace-plot.c
index ec76d52..604b7bf 100644
--- a/trace-plot.c
+++ b/trace-plot.c
@@ -321,6 +321,7 @@ int trace_graph_plot_event(struct graph_info *ginfo,
321{ 321{
322 info->line = FALSE; 322 info->line = FALSE;
323 info->box = FALSE; 323 info->box = FALSE;
324 info->bfill = TRUE;
324 325
325 if (!plot->cb->plot_event) 326 if (!plot->cb->plot_event)
326 return 0; 327 return 0;