]> git.baikalelectronics.ru Git - kernel.git/commit
blktrace/tracing: Use trace_seq_has_overflowed() helper function
authorSteven Rostedt (Red Hat) <rostedt@goodmis.org>
Wed, 12 Nov 2014 16:35:48 +0000 (11:35 -0500)
committerSteven Rostedt <rostedt@goodmis.org>
Wed, 19 Nov 2014 20:25:39 +0000 (15:25 -0500)
commit3449213b456619e86b49bccfd26e0b7969eb7d8c
treea346ee16752fcbb8a8c97ab7a980a0ea80cc15c6
parentad94c1c7a09826e22ad772818b79d5ce1ca71365
blktrace/tracing: Use trace_seq_has_overflowed() helper function

Checking the return code of every trace_seq_printf() operation and having
to return early if it overflowed makes the code messy.

Using the new trace_seq_has_overflowed() and trace_handle_return() functions
allows us to clean up the code.

In the future, trace_seq_printf() and friends will be turning into void
functions and not returning a value. The trace_seq_has_overflowed() is to
be used instead. This cleanup allows that change to take place.

Cc: Jens Axboe <axboe@fb.com>
Reviewed-by: Petr Mladek <pmladek@suse.cz>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
kernel/trace/blktrace.c