lkml.org 
[lkml]   [2021]   [Jun]   [25]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH] seq_buf: let seq_buf_putmem_hex support len larger than 8
On Fri, 25 Jun 2021 11:41:35 +0800
Yun Zhou <yun.zhou@windriver.com> wrote:

> Hi Steve,
>
> Thanks very much for your friendly and clear feedback.
>
> Although in current kernel trace_seq_putmem_hex() is only used for
> single word,
>
> I think it should/need support longer data. These are my arguments:
>
> 1. The design of double loop is used to process more data. If only
> supports single word,
>
>     the inner loop is enough, and the outer loop and the following
> lines are no longer needed.
>
>         len -= j / 2;
>
>         hex[j++] = ' ';
>
> 2. The last line above try to split two words/dwords with space. If only
> supports single word,
>
>     this strange behavior is hard to understand.
>
> 3. If it only supports single word, I think parameter 'len' is redundant.

Not really, we have to differentiate char, short, int and long long.

>
> 4. The comments of both seq_buf_putmem_hex() and trace_seq_putmem_hex()
> have not
>
>     indicated the scope of 'len'.
>
> 5. If it only supports single word, we need to design a new function to
> support bigger block of data.
>
>      I think it is redundant since the current function can perfectly
> deal with.
>
> 6. If follow my patch, it can support any length of data, including the
> single word.
>
> How do you think?

First, since you found a real bug, we need to just fix that first (single
word as is done currently). Because this needs to go to stable, and what
you are explaining above is an enhancement, and not something that needs to
be backported.

Second, is there a use case? Honestly, I never use the "hex" version of the
output. That was only pulled in because it was implemented in the original
code that was in the rt patch. I wish we could just get rid of it.

Thus, if there's a use case for handling more than one word, then I'm fine
with adding that enhancement. But if it is being done just because it can
be, then I don't think we should bother.

What use case do you have in mind?

Anyway, please send just a fix patch, and then we can discuss the merits of
this update later. I'd like the fix to be in ASAP.

Thanks!

-- Steve

\
 
 \ /
  Last update: 2021-06-25 06:09    [W:1.074 / U:0.352 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site