[0/2] seq_buf: Export seq_buf_putc() &nd seq_buf_puts()

Message ID cover.1698861216.git.christophe.jaillet@wanadoo.fr
Headers
Series seq_buf: Export seq_buf_putc() &nd seq_buf_puts() |

Message

Christophe JAILLET Nov. 1, 2023, 5:59 p.m. UTC
  seq_buf_putc() has a potential real use-case (link in the patch), but 
seq_buf_puts() has currently no forseen use-case, so I have split it in 2
patches if only the 1st one is accepted.

Christophe JAILLET (2):
  seq_buf: Export seq_buf_putc()
  seq_buf: Export seq_buf_puts()

 lib/seq_buf.c | 2 ++
 1 file changed, 2 insertions(+)
  

Comments

Steven Rostedt Nov. 1, 2023, 6:17 p.m. UTC | #1
On Wed,  1 Nov 2023 18:59:04 +0100
Christophe JAILLET <christophe.jaillet@wanadoo.fr> wrote:

> seq_buf_putc() has a potential real use-case (link in the patch), but 
> seq_buf_puts() has currently no forseen use-case, so I have split it in 2
> patches if only the 1st one is accepted.
> 
> Christophe JAILLET (2):
>   seq_buf: Export seq_buf_putc()
>   seq_buf: Export seq_buf_puts()
> 
>  lib/seq_buf.c | 2 ++
>  1 file changed, 2 insertions(+)
> 

I can pull these in as I'm getting ready for my pull request to Linus soon
(and just kicked off my testing).

Or do you need them as part of the patch you mentioned? When does that need
to go in? Can it wait till it hits Linus's tree?

-- Steve
  
Christophe JAILLET Nov. 1, 2023, 9:59 p.m. UTC | #2
Le 01/11/2023 à 19:17, Steven Rostedt a écrit :
> On Wed,  1 Nov 2023 18:59:04 +0100
> Christophe JAILLET <christophe.jaillet@wanadoo.fr> wrote:
> 
>> seq_buf_putc() has a potential real use-case (link in the patch), but
>> seq_buf_puts() has currently no forseen use-case, so I have split it in 2
>> patches if only the 1st one is accepted.
>>
>> Christophe JAILLET (2):
>>    seq_buf: Export seq_buf_putc()
>>    seq_buf: Export seq_buf_puts()
>>
>>   lib/seq_buf.c | 2 ++
>>   1 file changed, 2 insertions(+)
>>
> 
> I can pull these in as I'm getting ready for my pull request to Linus soon
> (and just kicked off my testing).
> 
> Or do you need them as part of the patch you mentioned? When does that need
> to go in? Can it wait till it hits Linus's tree?
> 
> -- Steve
> 

You timing will be mine, no need to hurry.
I'll see when it reaches -next.

Thanks for taking care of it.

CJ