public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Interrupts disabled for too long in printk
@ 2006-06-03 11:19 Mathieu Desnoyers
  2006-06-03 21:43 ` Steven Rostedt
  2006-06-08  1:37 ` Jon Smirl
  0 siblings, 2 replies; 11+ messages in thread
From: Mathieu Desnoyers @ 2006-06-03 11:19 UTC (permalink / raw)
  To: linux-kernel, ltt-dev

Hi,

I ran some experiments with my kernel tracer (LTTng : http://ltt.polymtl.ca)
that showed missing interrupts. I wrote a small paper to show how to use my
tracer to solve this kind of problem which I presented at the CE Linux Form
last April.

http://tree.celinuxforum.org/CelfPubWiki/ELC2006Presentations?action=AttachFile&do=get&target=celf2006-desnoyers.pdf

It shows that, when the serial console is activated, the following code disables
interrupts for up to 15ms. On a system configured with a 250HZ timer (each 4ms),
it means that 3 scheduler ticks are lost.

In the current git :

kernel/printk.c: release_console_sem()

        for ( ; ; ) {
----->          spin_lock_irqsave(&logbuf_lock, flags);
                wake_klogd |= log_start - log_end;
                if (con_start == log_end)
                        break;                  /* Nothing to print */
                _con_start = con_start;
                _log_end = log_end;
                con_start = log_end;            /* Flush */
                spin_unlock(&logbuf_lock);
                call_console_drivers(_con_start, _log_end);
----->          local_irq_restore(flags);
        }

I guess interrupts are disabled for a good reason (to protect this spinlock for
being taken by a nested interrupt handler. One way I am thinking to fix this
problem would be to do a spin try lock and fail if it is already taken.

Mathieu


OpenPGP public key:              http://krystal.dyndns.org:8080/key/compudj.gpg
Key fingerprint:     8CD5 52C3 8E3C 4140 715F  BA06 3F25 A8FE 3BAE 9A68 

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2006-06-08 18:34 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-06-03 11:19 Interrupts disabled for too long in printk Mathieu Desnoyers
2006-06-03 21:43 ` Steven Rostedt
2006-06-08  1:09   ` Mathieu Desnoyers
2006-06-08  1:37 ` Jon Smirl
2006-06-08  2:31   ` Mathieu Desnoyers
2006-06-08  2:35     ` Jon Smirl
2006-06-08 10:24       ` linux-os (Dick Johnson)
2006-06-08 14:38         ` Jon Smirl
2006-06-08 15:17           ` linux-os (Dick Johnson)
2006-06-08 15:45             ` Jon Smirl
2006-06-08 18:34               ` Miquel van Smoorenburg

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox