mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-26 14:14:01 +08:00
tracing: Use TRACE_MAX_PRINT instead of constant
TRACE_MAX_PRINT macro is defined, but is not used. Link: http://lkml.kernel.org/r/513D8421.4070404@huawei.com Signed-off-by: zhangwei(Jovi) <jovi.zhangwei@huawei.com> Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
This commit is contained in:
parent
687c878afb
commit
bd6df18716
@ -5978,8 +5978,8 @@ void
|
||||
trace_printk_seq(struct trace_seq *s)
|
||||
{
|
||||
/* Probably should print a warning here. */
|
||||
if (s->len >= 1000)
|
||||
s->len = 1000;
|
||||
if (s->len >= TRACE_MAX_PRINT)
|
||||
s->len = TRACE_MAX_PRINT;
|
||||
|
||||
/* should be zero ended, but we are paranoid. */
|
||||
s->buffer[s->len] = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user