diff options
author | Steven Rostedt <srostedt@redhat.com> | 2010-02-11 10:47:02 -0500 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2010-02-11 10:47:02 -0500 |
commit | 5e54b3ae83840f45b3eca65e4ab384098735d1e1 (patch) | |
tree | 5b6d78b17931a11d4489027743b838e24f26bdaa | |
parent | 2d5fa88935e0b889a02644706b63bd8622407e64 (diff) |
trace-graph: Fix uninitialized variables in CPU plot code
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
-rw-r--r-- | trace-plot-cpu.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/trace-plot-cpu.c b/trace-plot-cpu.c index 5f28e18..e96e02d 100644 --- a/trace-plot-cpu.c +++ b/trace-plot-cpu.c | |||
@@ -61,8 +61,8 @@ static int filter_record(struct graph_info *ginfo, | |||
61 | int *orig_pid, int *sched_pid, | 61 | int *orig_pid, int *sched_pid, |
62 | gboolean *sched_switch) | 62 | gboolean *sched_switch) |
63 | { | 63 | { |
64 | gboolean is_sched_switch; | 64 | gboolean is_sched_switch = FALSE; |
65 | gboolean is_wakeup; | 65 | gboolean is_wakeup = FALSE; |
66 | const char *comm; | 66 | const char *comm; |
67 | int wake_pid; | 67 | int wake_pid; |
68 | int filter; | 68 | int filter; |
@@ -201,6 +201,7 @@ static int cpu_plot_event(struct graph_info *ginfo, | |||
201 | info->box = TRUE; | 201 | info->box = TRUE; |
202 | info->bstart = cpu_info->last_time; | 202 | info->bstart = cpu_info->last_time; |
203 | info->bend = ginfo->view_end_time; | 203 | info->bend = ginfo->view_end_time; |
204 | info->bcolor = hash_pid(cpu_info->last_pid); | ||
204 | } | 205 | } |
205 | return 0; | 206 | return 0; |
206 | } | 207 | } |
@@ -315,6 +316,7 @@ int cpu_plot_display_info(struct graph_info *ginfo, | |||
315 | comm = pevent_data_comm_from_pid(ginfo->pevent, pid); | 316 | comm = pevent_data_comm_from_pid(ginfo->pevent, pid); |
316 | } | 317 | } |
317 | 318 | ||
319 | convert_nano(record->ts, &sec, &usec); | ||
318 | trace_seq_printf(s, "%lu.%06lu", sec, usec); | 320 | trace_seq_printf(s, "%lu.%06lu", sec, usec); |
319 | if (pid) | 321 | if (pid) |
320 | trace_seq_printf(s, " %s-%d", comm, pid); | 322 | trace_seq_printf(s, " %s-%d", comm, pid); |
@@ -326,6 +328,8 @@ int cpu_plot_display_info(struct graph_info *ginfo, | |||
326 | return ret; | 328 | return ret; |
327 | } | 329 | } |
328 | 330 | ||
331 | convert_nano(record->ts, &sec, &usec); | ||
332 | |||
329 | pevent = ginfo->pevent; | 333 | pevent = ginfo->pevent; |
330 | 334 | ||
331 | pid = pevent_data_pid(ginfo->pevent, record); | 335 | pid = pevent_data_pid(ginfo->pevent, record); |
@@ -334,8 +338,6 @@ int cpu_plot_display_info(struct graph_info *ginfo, | |||
334 | if (record->ts > time - 2/ginfo->resolution && | 338 | if (record->ts > time - 2/ginfo->resolution && |
335 | record->ts < time + 2/ginfo->resolution) { | 339 | record->ts < time + 2/ginfo->resolution) { |
336 | 340 | ||
337 | convert_nano(record->ts, &sec, &usec); | ||
338 | |||
339 | type = pevent_data_type(pevent, record); | 341 | type = pevent_data_type(pevent, record); |
340 | event = pevent_data_event_from_type(pevent, type); | 342 | event = pevent_data_event_from_type(pevent, type); |
341 | if (event) { | 343 | if (event) { |