Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1680660
| From | Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [RFC][PATCHv3 2/5] printk: introduce printing kernel thread |
| Date | 2017-07-04 07:30 +0200 |
| Message-ID | <tZozn-3Ky-3@gated-at.bofh.it> (permalink) |
| References | (5 earlier) <tXYdY-2mX-25@gated-at.bofh.it> <tY404-5YH-51@gated-at.bofh.it> <tY4jn-64M-7@gated-at.bofh.it> <tZ7yy-BB-7@gated-at.bofh.it> <tZfmq-5Q9-35@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On (07/03/17 15:34), Steven Rostedt wrote:
> > +#define PRINTK_FLOOD_DEFAULT_DELAY 10
> > +
> > int printk_delay_msec __read_mostly;
> >
> > +static inline void __printk_delay(int m)
> > +{
> > + while (m--) {
> > + mdelay(1);
> > + touch_nmi_watchdog();
> > + }
> > +}
> > +
> > static inline void printk_delay(void)
> > {
> > - if (unlikely(printk_delay_msec)) {
> > - int m = printk_delay_msec;
> > + unsigned long flags;
> > + u64 console_seen = 0, console_to_see;
> >
> > - while (m--) {
> > - mdelay(1);
> > - touch_nmi_watchdog();
> > - }
> > + if (printk_delay_msec) {
> > + __printk_delay(printk_delay_msec);
> > + return;
> > + }
> > +
>
> This had better be an option, and not default.
yes.
> And what happens if the printk caller happens to preempt the one
> doing the writes to consoles?
in short - we just burn CPU cycles. that case is broken.
that's mostly the reason behind PRINTK_FLOOD_DEFAULT_DELAY being quite
small.
one can simply do
console_lock();
printk();
printk();
....
printk();
console_unlock();
and trigger a useless throttling. a needed one in general case,
but useless in the given circumstances.
not sure if we can properly throttle printk in all of the cases.
we know that console_sem is locked, but we don't know what for.
is CPU that owns the console_sem is now in console_unlock() or
somewhere in fbcon, or anywhere else. we probably need not to
throttle printk() if we know that console_sem is already locked
by this_cpu and we simply call printk either from IRQ that
preempted console_unlock() on this_cpu or recursive printk from
console_unlock()... and so on.
-ss
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Re: [RFC][PATCHv3 2/5] printk: introduce printing kernel thread Steven Rostedt <rostedt@goodmis.org> - 2017-07-03 21:40 +0200
Re: [RFC][PATCHv3 2/5] printk: introduce printing kernel thread Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com> - 2017-07-04 07:30 +0200
Re: [RFC][PATCHv3 2/5] printk: introduce printing kernel thread Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com> - 2017-07-04 09:00 +0200
csiph-web