Re: [PATCH v5] printk: Add line-buffered printk() API.

2018-11-02 Thread Tetsuo Handa
On 2018/11/01 23:13, Petr Mladek wrote: > On Wed 2018-10-24 19:11:10, Tetsuo Handa wrote: >> After this patch, we will consider how we can add context identifier to >> each line of printk() output (so that we can group multiple lines into >> one block when parsing). Therefore, if converting to this

Re: [PATCH v5] printk: Add line-buffered printk() API.

2018-11-01 Thread Petr Mladek
On Wed 2018-10-24 19:11:10, Tetsuo Handa wrote: > Sometimes we want to print a whole line without being disturbed by > concurrent printk() from interrupts and/or other threads, for printk() > which does not end with '\n' can be disturbed. > > Since mixed printk() output makes it hard to interpret,

[PATCH v5] printk: Add line-buffered printk() API.

2018-10-24 Thread Tetsuo Handa
Sometimes we want to print a whole line without being disturbed by concurrent printk() from interrupts and/or other threads, for printk() which does not end with '\n' can be disturbed. Since mixed printk() output makes it hard to interpret, this patch introduces API for line-buffered printk() outp