diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2009-02-04 20:16:39 -0200 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-02-05 14:35:46 +0100 |
commit | 268ccda0cb4d1292029d07ee3dbd07117baf6ecb (patch) | |
tree | 7683e02758d3f768ad21414abf39b00773e87940 /block | |
parent | 43769f10b4826376cbf4ce17af74a5b4e8dc4fcd (diff) | |
download | linux-3.10-268ccda0cb4d1292029d07ee3dbd07117baf6ecb.tar.gz linux-3.10-268ccda0cb4d1292029d07ee3dbd07117baf6ecb.tar.bz2 linux-3.10-268ccda0cb4d1292029d07ee3dbd07117baf6ecb.zip |
trace: assign defaults at register_ftrace_event
Impact: simplification of tracers
As all tracers are doing this we might as well do it in
register_ftrace_event and save one branch each time we call these
callbacks.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Acked-by: Frederic Weisbecker <fweisbec@gmail.com>
Acked-by: Steven Rostedt <srostedt@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'block')
-rw-r--r-- | block/blktrace.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/block/blktrace.c b/block/blktrace.c index c7698d1617a..1ebd068061e 100644 --- a/block/blktrace.c +++ b/block/blktrace.c @@ -1243,8 +1243,6 @@ static struct trace_event trace_blk_event = { .type = TRACE_BLK, .trace = blk_trace_event_print, .latency_trace = blk_trace_event_print, - .raw = trace_nop_print, - .hex = trace_nop_print, .binary = blk_trace_event_print_binary, }; |