Skip to content

Commit

Permalink
ftrace: fix max latency
Browse files Browse the repository at this point in the history
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
  • Loading branch information
Steven Rostedt authored and Thomas Gleixner committed May 23, 2008
1 parent 89b2f97 commit 57f50be
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions kernel/trace/trace.c
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,11 @@ static int __init set_nr_entries(char *str)
}
__setup("trace_entries=", set_nr_entries);

unsigned long nsecs_to_usecs(unsigned long nsecs)
{
return nsecs / 1000;
}

enum trace_type {
__TRACE_FIRST_TYPE = 0,

Expand Down Expand Up @@ -733,7 +738,7 @@ print_trace_header(struct seq_file *m, struct trace_iterator *iter)
"---------------------------------\n");
seq_printf(m, " latency: %lu us, #%lu/%lu, CPU#%d |"
" (M:%s VP:%d, KP:%d, SP:%d HP:%d",
data->saved_latency,
nsecs_to_usecs(data->saved_latency),
entries,
total,
tr->cpu,
Expand Down Expand Up @@ -771,11 +776,6 @@ print_trace_header(struct seq_file *m, struct trace_iterator *iter)
seq_puts(m, "\n");
}

unsigned long nsecs_to_usecs(unsigned long nsecs)
{
return nsecs / 1000;
}

static void notrace
lat_print_generic(struct seq_file *m, struct trace_entry *entry, int cpu)
{
Expand Down

0 comments on commit 57f50be

Please sign in to comment.