diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2014-11-27 18:57:52 +0300 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2014-12-04 01:10:14 +0300 |
commit | 3558a5ac50dbb2419cc649d5e154af161d661037 (patch) | |
tree | 748ba84148b99c750900206d90e5969e505726b6 /drivers/firmware | |
parent | 8e1e1df29d837c589c8b4d7b49864481ff7795b8 (diff) | |
download | linux-3558a5ac50dbb2419cc649d5e154af161d661037.tar.xz |
tracing: Truncated output is better than nothing
The initial reason for this patch is that I noticed that:
if (len > TRACE_BUF_SIZE)
is off by one. In this code, if len == TRACE_BUF_SIZE, then it means we
have truncated the last character off the output string. If we truncate
two or more characters then we exit without printing.
After some discussion, we decided that printing truncated data is better
than not printing at all so we should just use vscnprintf() and remove
the test entirely. Also I have updated memcpy() to copy the NUL char
instead of setting the NUL in a separate step.
Link: http://lkml.kernel.org/r/20141127155752.GA21914@mwanda
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'drivers/firmware')
0 files changed, 0 insertions, 0 deletions