Re: [PATCH] tracing: Have trace_marker break up by lines by size of trace_seq

From: Steven Rostedt
Date: Tue Dec 12 2023 - 19:26:15 EST


On Wed, 13 Dec 2023 09:19:33 +0900
Masami Hiramatsu (Google) <mhiramat@xxxxxxxxxx> wrote:

> On Tue, 12 Dec 2023 19:04:22 -0500
> Steven Rostedt <rostedt@xxxxxxxxxxx> wrote:
>
> > From: "Steven Rostedt (Google)" <rostedt@xxxxxxxxxxx>
> >
> > If a trace_marker write is bigger than what trace_seq can hold, then it
> > will print "LINE TOO BIG" message and not what was written.
> >
> > Instead, if check if the write is bigger than the trace_seq and break it
>
> Instead, check if ... ?

Ah yes, thank you.

>
> > up by that size.
> >
> > Ideally, we could make the trace_seq dynamic that could hold this. But
> > that's for another time.
>
> I think this is OK, but if possible it is better to be merged with the
> "LINE TOO BIG" patch (by updating the version).

What do you mean by "updating the version"?

Note, the LINE TOO BIG doesn't happen today. It only happens when applying
the sub buffer resize change, and then when I run the tests, it breaks when
the subbuffer is bigger than the trace_seq.

>
> Reviewed-by: Masami Hiramatsu (Google) <mhiramat@xxxxxxxxxx>

Thanks!

-- Steve