-
- Downloads
tracing: Add trace_seq_has_overflowed() and trace_handle_return()
Adding a trace_seq_has_overflowed() which returns true if the trace_seq had too much written into it allows us to simplify the code. Instead of checking the return value of every call to trace_seq_printf() and friends, they can all be called normally, and at the end we can return !trace_seq_has_overflowed() instead. Several functions also return TRACE_TYPE_PARTIAL_LINE when the trace_seq overflowed and TRACE_TYPE_HANDLED otherwise. Another helper function was created called trace_handle_return() which takes a trace_seq and returns these enums. Using this helper function also simplifies the code. This change also makes it possible to remove the return values of trace_seq_printf() and friends. They should instead just be void functions. Link: http://lkml.kernel.org/r/20141114011410.365183157@goodmis.org Reviewed-by:Petr Mladek <pmladek@suse.cz> Signed-off-by:
Steven Rostedt <rostedt@goodmis.org>
Showing
- include/linux/ftrace_event.h 11 additions, 0 deletionsinclude/linux/ftrace_event.h
- include/linux/trace_seq.h 12 additions, 0 deletionsinclude/linux/trace_seq.h
- include/trace/ftrace.h 2 additions, 4 deletionsinclude/trace/ftrace.h
- kernel/trace/trace.c 35 additions, 34 deletionskernel/trace/trace.c
- kernel/trace/trace.h 1 addition, 0 deletionskernel/trace/trace.h
- kernel/trace/trace_output.c 165 additions, 251 deletionskernel/trace/trace_output.c
- kernel/trace/trace_output.h 5 additions, 11 deletionskernel/trace/trace_output.h
Loading
Please register or sign in to comment