Re: [PATCH v3] arch/x86: get rid of KERN_CONT in show_fault_oops()

2018-06-27 Thread Dmitry Vyukov
On Tue, Jun 26, 2018 at 10:05 PM, Ingo Molnar wrote: > > * Dmitry Vyukov wrote: > >> From: Dmitry Vyukov >> >> KERN_CONT leads to split lines in kernel output >> and complicates useful changes to printk like >> printing context before each line. >> >> Only acceptable use of continuations is basi

Re: [PATCH v3] arch/x86: get rid of KERN_CONT in show_fault_oops()

2018-06-26 Thread Ingo Molnar
* Dmitry Vyukov wrote: > From: Dmitry Vyukov > > KERN_CONT leads to split lines in kernel output > and complicates useful changes to printk like > printing context before each line. > > Only acceptable use of continuations is basically > boot-time testing. > > Get rid of it. > > Also tidy

Re: [PATCH v3] arch/x86: get rid of KERN_CONT in show_fault_oops()

2018-06-26 Thread Andy Shevchenko
On Tue, Jun 26, 2018 at 10:28 AM, Dmitry Vyukov wrote: > From: Dmitry Vyukov > > KERN_CONT leads to split lines in kernel output > and complicates useful changes to printk like > printing context before each line. > > Only acceptable use of continuations is basically > boot-time testing. > > Get

[PATCH v3] arch/x86: get rid of KERN_CONT in show_fault_oops()

2018-06-26 Thread Dmitry Vyukov
From: Dmitry Vyukov KERN_CONT leads to split lines in kernel output and complicates useful changes to printk like printing context before each line. Only acceptable use of continuations is basically boot-time testing. Get rid of it. Also tidy up code around as asked by reviewers. Signed-off-b