aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven Rostedt <srostedt@redhat.com>2010-02-10 21:20:35 -0500
committerSteven Rostedt <rostedt@goodmis.org>2010-02-10 21:20:35 -0500
commit690c9608a53a9b90f5a7fc55c5da99ba861008bb (patch)
treea938dcc29bed73c5ba846b5241d356711a0ad2be
parentd8c1aed41b421ab60a2b6fdbf4776c46dc66ec94 (diff)
trace-graph: Remove call to set_cpus_to_time() before find_record()
The set_cpus_to_time() can be expensive, and find_record() calls it directly. No need to double the time to find the next record for a task plot. Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
-rw-r--r--trace-plot-task.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/trace-plot-task.c b/trace-plot-task.c
index 32bfc68..ecbf873 100644
--- a/trace-plot-task.c
+++ b/trace-plot-task.c
@@ -224,8 +224,6 @@ static int task_plot_display_last_event(struct graph_info *ginfo,
224 */ 224 */
225 offsets = save_offsets(ginfo); 225 offsets = save_offsets(ginfo);
226 226
227 set_cpus_to_time(ginfo, time);
228
229 record = find_record(ginfo, pid, time); 227 record = find_record(ginfo, pid, time);
230 228
231 restore_offsets(ginfo, offsets); 229 restore_offsets(ginfo, offsets);
@@ -419,7 +417,6 @@ get_display_record(struct graph_info *ginfo, int pid, unsigned long long time)
419 int next_cpu; 417 int next_cpu;
420 int cpu; 418 int cpu;
421 419
422 set_cpus_to_time(ginfo, time);
423 record = find_record(ginfo, pid, time); 420 record = find_record(ginfo, pid, time);
424 421
425 /* If the time is right at this record, use it */ 422 /* If the time is right at this record, use it */