diff options
| author | Steven Rostedt <srostedt@redhat.com> | 2009-03-04 21:42:04 -0500 | 
|---|---|---|
| committer | Steven Rostedt <srostedt@redhat.com> | 2009-03-04 21:42:04 -0500 | 
| commit | 5fd73f862468280d4cbb5ba4321502f911f9f89a (patch) | |
| tree | 3c96f61dea5280784560a8b9252fe13a84149421 /kernel/trace/trace_output.h | |
| parent | c032ef64d680717e4e8ce3da65da6419a35f8a2c (diff) | |
| download | olio-linux-3.10-5fd73f862468280d4cbb5ba4321502f911f9f89a.tar.xz olio-linux-3.10-5fd73f862468280d4cbb5ba4321502f911f9f89a.zip  | |
tracing: remove extra latency_trace method from trace structure
Impact: clean up
The trace and latency_trace function pointers are identical for
every tracer but the function tracer. The differences in the function
tracer are trivial (latency output puts paranthesis around parent).
This patch removes the latency_trace pointer and all prints will
now just use the trace output function pointer.
Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Diffstat (limited to 'kernel/trace/trace_output.h')
| -rw-r--r-- | kernel/trace/trace_output.h | 1 | 
1 files changed, 0 insertions, 1 deletions
diff --git a/kernel/trace/trace_output.h b/kernel/trace/trace_output.h index 551a25a7221..8a34d688ed6 100644 --- a/kernel/trace/trace_output.h +++ b/kernel/trace/trace_output.h @@ -10,7 +10,6 @@ struct trace_event {  	struct hlist_node	node;  	int			type;  	trace_print_func	trace; -	trace_print_func	latency_trace;  	trace_print_func	raw;  	trace_print_func	hex;  	trace_print_func	binary;  |